@famibee/skynovel 1.19.6 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/app.js +3258 -4113
- package/appMain.js +105 -89
- package/core/lib/sn/Button.d.ts +4 -1
- package/core/lib/sn/Button.d.ts.map +1 -1
- package/core/lib/sn/CmnInterface.d.ts +2 -0
- package/core/lib/sn/CmnInterface.d.ts.map +1 -1
- package/core/lib/sn/CmnLib.d.ts +3 -2
- package/core/lib/sn/CmnLib.d.ts.map +1 -1
- package/core/lib/sn/DesignCast.d.ts +6 -2
- package/core/lib/sn/DesignCast.d.ts.map +1 -1
- package/core/lib/sn/EventMng.d.ts +3 -1
- package/core/lib/sn/EventMng.d.ts.map +1 -1
- package/core/lib/sn/FrameMng.d.ts.map +1 -1
- package/core/lib/sn/GrpLayer.d.ts +1 -0
- package/core/lib/sn/GrpLayer.d.ts.map +1 -1
- package/core/lib/sn/LayerMng.d.ts.map +1 -1
- package/core/lib/sn/SysApp.d.ts +0 -1
- package/core/lib/sn/SysApp.d.ts.map +1 -1
- package/core/lib/sn/SysBase.d.ts +1 -1
- package/core/lib/sn/TxtLayer.d.ts.map +1 -1
- package/core/lib/sn/TxtStage.d.ts.map +1 -1
- package/package.json +13 -13
- package/web.js +3258 -4113
- package/app.js.LICENSE.txt +0 -172
- package/appMain.js.LICENSE.txt +0 -1
- package/web.js.LICENSE.txt +0 -179
package/appMain.js
CHANGED
|
@@ -3343,6 +3343,8 @@ const resolve_1 = __webpack_require__(/*! ./compile/resolve */ "./node_modules/a
|
|
|
3343
3343
|
const dataType_1 = __webpack_require__(/*! ./compile/validate/dataType */ "./node_modules/ajv/dist/compile/validate/dataType.js");
|
|
3344
3344
|
const util_1 = __webpack_require__(/*! ./compile/util */ "./node_modules/ajv/dist/compile/util.js");
|
|
3345
3345
|
const $dataRefSchema = __webpack_require__(/*! ./refs/data.json */ "./node_modules/ajv/dist/refs/data.json");
|
|
3346
|
+
const defaultRegExp = (str, flags) => new RegExp(str, flags);
|
|
3347
|
+
defaultRegExp.code = "new RegExp";
|
|
3346
3348
|
const META_IGNORE_OPTIONS = ["removeAdditional", "useDefaults", "coerceTypes"];
|
|
3347
3349
|
const EXT_SCOPE_NAMES = new Set([
|
|
3348
3350
|
"validate",
|
|
@@ -3384,28 +3386,29 @@ const deprecatedOptions = {
|
|
|
3384
3386
|
const MAX_EXPRESSION = 200;
|
|
3385
3387
|
// eslint-disable-next-line complexity
|
|
3386
3388
|
function requiredOptions(o) {
|
|
3387
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x;
|
|
3389
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
|
|
3388
3390
|
const s = o.strict;
|
|
3389
3391
|
const _optz = (_a = o.code) === null || _a === void 0 ? void 0 : _a.optimize;
|
|
3390
3392
|
const optimize = _optz === true || _optz === undefined ? 1 : _optz || 0;
|
|
3393
|
+
const regExp = (_c = (_b = o.code) === null || _b === void 0 ? void 0 : _b.regExp) !== null && _c !== void 0 ? _c : defaultRegExp;
|
|
3391
3394
|
return {
|
|
3392
|
-
strictSchema: (
|
|
3393
|
-
strictNumbers: (
|
|
3394
|
-
strictTypes: (
|
|
3395
|
-
strictTuples: (
|
|
3396
|
-
strictRequired: (
|
|
3397
|
-
code: o.code ? { ...o.code, optimize } : { optimize },
|
|
3398
|
-
loopRequired: (
|
|
3399
|
-
loopEnum: (
|
|
3400
|
-
meta: (
|
|
3401
|
-
messages: (
|
|
3402
|
-
inlineRefs: (
|
|
3403
|
-
schemaId: (
|
|
3404
|
-
addUsedSchema: (
|
|
3405
|
-
validateSchema: (
|
|
3406
|
-
validateFormats: (
|
|
3407
|
-
unicodeRegExp: (
|
|
3408
|
-
int32range: (
|
|
3395
|
+
strictSchema: (_e = (_d = o.strictSchema) !== null && _d !== void 0 ? _d : s) !== null && _e !== void 0 ? _e : true,
|
|
3396
|
+
strictNumbers: (_g = (_f = o.strictNumbers) !== null && _f !== void 0 ? _f : s) !== null && _g !== void 0 ? _g : true,
|
|
3397
|
+
strictTypes: (_j = (_h = o.strictTypes) !== null && _h !== void 0 ? _h : s) !== null && _j !== void 0 ? _j : "log",
|
|
3398
|
+
strictTuples: (_l = (_k = o.strictTuples) !== null && _k !== void 0 ? _k : s) !== null && _l !== void 0 ? _l : "log",
|
|
3399
|
+
strictRequired: (_o = (_m = o.strictRequired) !== null && _m !== void 0 ? _m : s) !== null && _o !== void 0 ? _o : false,
|
|
3400
|
+
code: o.code ? { ...o.code, optimize, regExp } : { optimize, regExp },
|
|
3401
|
+
loopRequired: (_p = o.loopRequired) !== null && _p !== void 0 ? _p : MAX_EXPRESSION,
|
|
3402
|
+
loopEnum: (_q = o.loopEnum) !== null && _q !== void 0 ? _q : MAX_EXPRESSION,
|
|
3403
|
+
meta: (_r = o.meta) !== null && _r !== void 0 ? _r : true,
|
|
3404
|
+
messages: (_s = o.messages) !== null && _s !== void 0 ? _s : true,
|
|
3405
|
+
inlineRefs: (_t = o.inlineRefs) !== null && _t !== void 0 ? _t : true,
|
|
3406
|
+
schemaId: (_u = o.schemaId) !== null && _u !== void 0 ? _u : "$id",
|
|
3407
|
+
addUsedSchema: (_v = o.addUsedSchema) !== null && _v !== void 0 ? _v : true,
|
|
3408
|
+
validateSchema: (_w = o.validateSchema) !== null && _w !== void 0 ? _w : true,
|
|
3409
|
+
validateFormats: (_x = o.validateFormats) !== null && _x !== void 0 ? _x : true,
|
|
3410
|
+
unicodeRegExp: (_y = o.unicodeRegExp) !== null && _y !== void 0 ? _y : true,
|
|
3411
|
+
int32range: (_z = o.int32range) !== null && _z !== void 0 ? _z : true,
|
|
3409
3412
|
};
|
|
3410
3413
|
}
|
|
3411
3414
|
class Ajv {
|
|
@@ -4297,13 +4300,21 @@ const def = {
|
|
|
4297
4300
|
if (max === undefined && min === 1) {
|
|
4298
4301
|
validateItems(valid, () => gen.if(valid, () => gen.break()));
|
|
4299
4302
|
}
|
|
4303
|
+
else if (min === 0) {
|
|
4304
|
+
gen.let(valid, true);
|
|
4305
|
+
if (max !== undefined)
|
|
4306
|
+
gen.if((0, codegen_1._) `${data}.length > 0`, validateItemsWithCount);
|
|
4307
|
+
}
|
|
4300
4308
|
else {
|
|
4301
4309
|
gen.let(valid, false);
|
|
4310
|
+
validateItemsWithCount();
|
|
4311
|
+
}
|
|
4312
|
+
cxt.result(valid, () => cxt.reset());
|
|
4313
|
+
function validateItemsWithCount() {
|
|
4302
4314
|
const schValid = gen.name("_valid");
|
|
4303
4315
|
const count = gen.let("count", 0);
|
|
4304
4316
|
validateItems(schValid, () => gen.if(schValid, () => checkLimits(count)));
|
|
4305
4317
|
}
|
|
4306
|
-
cxt.result(valid, () => cxt.reset());
|
|
4307
4318
|
function validateItems(_valid, block) {
|
|
4308
4319
|
gen.forRange("i", 0, len, (i) => {
|
|
4309
4320
|
cxt.subschema({
|
|
@@ -5023,6 +5034,7 @@ exports.validateUnion = exports.validateArray = exports.usePattern = exports.cal
|
|
|
5023
5034
|
const codegen_1 = __webpack_require__(/*! ../compile/codegen */ "./node_modules/ajv/dist/compile/codegen/index.js");
|
|
5024
5035
|
const util_1 = __webpack_require__(/*! ../compile/util */ "./node_modules/ajv/dist/compile/util.js");
|
|
5025
5036
|
const names_1 = __webpack_require__(/*! ../compile/names */ "./node_modules/ajv/dist/compile/names.js");
|
|
5037
|
+
const util_2 = __webpack_require__(/*! ../compile/util */ "./node_modules/ajv/dist/compile/util.js");
|
|
5026
5038
|
function checkReportMissingProp(cxt, prop) {
|
|
5027
5039
|
const { gen, data, it } = cxt;
|
|
5028
5040
|
gen.if(noPropertyInData(gen, data, prop, it.opts.ownProperties), () => {
|
|
@@ -5084,12 +5096,15 @@ function callValidateCode({ schemaCode, data, it: { gen, topSchemaRef, schemaPat
|
|
|
5084
5096
|
return context !== codegen_1.nil ? (0, codegen_1._) `${func}.call(${context}, ${args})` : (0, codegen_1._) `${func}(${args})`;
|
|
5085
5097
|
}
|
|
5086
5098
|
exports.callValidateCode = callValidateCode;
|
|
5099
|
+
const newRegExp = (0, codegen_1._) `new RegExp`;
|
|
5087
5100
|
function usePattern({ gen, it: { opts } }, pattern) {
|
|
5088
5101
|
const u = opts.unicodeRegExp ? "u" : "";
|
|
5102
|
+
const { regExp } = opts.code;
|
|
5103
|
+
const rx = regExp(pattern, u);
|
|
5089
5104
|
return gen.scopeValue("pattern", {
|
|
5090
|
-
key:
|
|
5091
|
-
ref:
|
|
5092
|
-
code: (0, codegen_1._)
|
|
5105
|
+
key: rx.toString(),
|
|
5106
|
+
ref: rx,
|
|
5107
|
+
code: (0, codegen_1._) `${regExp.code === "new RegExp" ? newRegExp : (0, util_2.useFunc)(gen, regExp)}(${pattern}, ${u})`,
|
|
5093
5108
|
});
|
|
5094
5109
|
}
|
|
5095
5110
|
exports.usePattern = usePattern;
|
|
@@ -7166,7 +7181,7 @@ module.exports = BufferList
|
|
|
7166
7181
|
"use strict";
|
|
7167
7182
|
|
|
7168
7183
|
|
|
7169
|
-
const DuplexStream = __webpack_require__(/*! readable-stream */ "./node_modules/bl/node_modules/readable-stream/readable.js").Duplex
|
|
7184
|
+
const DuplexStream = (__webpack_require__(/*! readable-stream */ "./node_modules/bl/node_modules/readable-stream/readable.js").Duplex)
|
|
7170
7185
|
const inherits = __webpack_require__(/*! inherits */ "./node_modules/inherits/inherits.js")
|
|
7171
7186
|
const BufferList = __webpack_require__(/*! ./BufferList */ "./node_modules/bl/BufferList.js")
|
|
7172
7187
|
|
|
@@ -7615,7 +7630,7 @@ var Duplex;
|
|
|
7615
7630
|
Readable.ReadableState = ReadableState;
|
|
7616
7631
|
/*<replacement>*/
|
|
7617
7632
|
|
|
7618
|
-
var EE = __webpack_require__(/*! events */ "events").EventEmitter;
|
|
7633
|
+
var EE = (__webpack_require__(/*! events */ "events").EventEmitter);
|
|
7619
7634
|
|
|
7620
7635
|
var EElistenerCount = function EElistenerCount(emitter, type) {
|
|
7621
7636
|
return emitter.listeners(type).length;
|
|
@@ -7629,7 +7644,7 @@ var Stream = __webpack_require__(/*! ./internal/streams/stream */ "./node_module
|
|
|
7629
7644
|
/*</replacement>*/
|
|
7630
7645
|
|
|
7631
7646
|
|
|
7632
|
-
var Buffer = __webpack_require__(/*! buffer */ "buffer").Buffer;
|
|
7647
|
+
var Buffer = (__webpack_require__(/*! buffer */ "buffer").Buffer);
|
|
7633
7648
|
|
|
7634
7649
|
var OurUint8Array = global.Uint8Array || function () {};
|
|
7635
7650
|
|
|
@@ -7662,7 +7677,7 @@ var destroyImpl = __webpack_require__(/*! ./internal/streams/destroy */ "./node_
|
|
|
7662
7677
|
var _require = __webpack_require__(/*! ./internal/streams/state */ "./node_modules/bl/node_modules/readable-stream/lib/internal/streams/state.js"),
|
|
7663
7678
|
getHighWaterMark = _require.getHighWaterMark;
|
|
7664
7679
|
|
|
7665
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes,
|
|
7680
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes),
|
|
7666
7681
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
7667
7682
|
ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
|
|
7668
7683
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
@@ -7746,7 +7761,7 @@ function ReadableState(options, stream, isDuplex) {
|
|
|
7746
7761
|
this.encoding = null;
|
|
7747
7762
|
|
|
7748
7763
|
if (options.encoding) {
|
|
7749
|
-
if (!StringDecoder) StringDecoder = __webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
|
|
7764
|
+
if (!StringDecoder) StringDecoder = (__webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder);
|
|
7750
7765
|
this.decoder = new StringDecoder(options.encoding);
|
|
7751
7766
|
this.encoding = options.encoding;
|
|
7752
7767
|
}
|
|
@@ -7908,7 +7923,7 @@ Readable.prototype.isPaused = function () {
|
|
|
7908
7923
|
|
|
7909
7924
|
|
|
7910
7925
|
Readable.prototype.setEncoding = function (enc) {
|
|
7911
|
-
if (!StringDecoder) StringDecoder = __webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
|
|
7926
|
+
if (!StringDecoder) StringDecoder = (__webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder);
|
|
7912
7927
|
var decoder = new StringDecoder(enc);
|
|
7913
7928
|
this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8
|
|
7914
7929
|
|
|
@@ -8783,7 +8798,7 @@ function indexOf(xs, x) {
|
|
|
8783
8798
|
|
|
8784
8799
|
module.exports = Transform;
|
|
8785
8800
|
|
|
8786
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes,
|
|
8801
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes),
|
|
8787
8802
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
8788
8803
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
8789
8804
|
ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,
|
|
@@ -8998,7 +9013,7 @@ var Stream = __webpack_require__(/*! ./internal/streams/stream */ "./node_module
|
|
|
8998
9013
|
/*</replacement>*/
|
|
8999
9014
|
|
|
9000
9015
|
|
|
9001
|
-
var Buffer = __webpack_require__(/*! buffer */ "buffer").Buffer;
|
|
9016
|
+
var Buffer = (__webpack_require__(/*! buffer */ "buffer").Buffer);
|
|
9002
9017
|
|
|
9003
9018
|
var OurUint8Array = global.Uint8Array || function () {};
|
|
9004
9019
|
|
|
@@ -9015,7 +9030,7 @@ var destroyImpl = __webpack_require__(/*! ./internal/streams/destroy */ "./node_
|
|
|
9015
9030
|
var _require = __webpack_require__(/*! ./internal/streams/state */ "./node_modules/bl/node_modules/readable-stream/lib/internal/streams/state.js"),
|
|
9016
9031
|
getHighWaterMark = _require.getHighWaterMark;
|
|
9017
9032
|
|
|
9018
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes,
|
|
9033
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes),
|
|
9019
9034
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
9020
9035
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
9021
9036
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
@@ -10192,7 +10207,7 @@ module.exports = {
|
|
|
10192
10207
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
10193
10208
|
|
|
10194
10209
|
|
|
10195
|
-
var ERR_STREAM_PREMATURE_CLOSE = __webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_STREAM_PREMATURE_CLOSE;
|
|
10210
|
+
var ERR_STREAM_PREMATURE_CLOSE = (__webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_STREAM_PREMATURE_CLOSE);
|
|
10196
10211
|
|
|
10197
10212
|
function once(callback) {
|
|
10198
10213
|
var called = false;
|
|
@@ -10314,7 +10329,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
10314
10329
|
|
|
10315
10330
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
10316
10331
|
|
|
10317
|
-
var ERR_INVALID_ARG_TYPE = __webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_INVALID_ARG_TYPE;
|
|
10332
|
+
var ERR_INVALID_ARG_TYPE = (__webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_INVALID_ARG_TYPE);
|
|
10318
10333
|
|
|
10319
10334
|
function from(Readable, iterable, opts) {
|
|
10320
10335
|
var iterator;
|
|
@@ -10391,7 +10406,7 @@ function once(callback) {
|
|
|
10391
10406
|
};
|
|
10392
10407
|
}
|
|
10393
10408
|
|
|
10394
|
-
var _require$codes = __webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes,
|
|
10409
|
+
var _require$codes = (__webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes),
|
|
10395
10410
|
ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,
|
|
10396
10411
|
ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
|
|
10397
10412
|
|
|
@@ -10485,7 +10500,7 @@ module.exports = pipeline;
|
|
|
10485
10500
|
"use strict";
|
|
10486
10501
|
|
|
10487
10502
|
|
|
10488
|
-
var ERR_INVALID_OPT_VALUE = __webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_INVALID_OPT_VALUE;
|
|
10503
|
+
var ERR_INVALID_OPT_VALUE = (__webpack_require__(/*! ../../../errors */ "./node_modules/bl/node_modules/readable-stream/errors.js").codes.ERR_INVALID_OPT_VALUE);
|
|
10489
10504
|
|
|
10490
10505
|
function highWaterMarkFrom(options, isDuplex, duplexKey) {
|
|
10491
10506
|
return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
|
|
@@ -10810,6 +10825,7 @@ class Conf {
|
|
|
10810
10825
|
projectSuffix: 'nodejs',
|
|
10811
10826
|
clearInvalidConfig: false,
|
|
10812
10827
|
accessPropertiesByDotNotation: true,
|
|
10828
|
+
configFileMode: 0o666,
|
|
10813
10829
|
...partialOptions
|
|
10814
10830
|
};
|
|
10815
10831
|
const getPackageData = onetime(() => {
|
|
@@ -11105,18 +11121,18 @@ class Conf {
|
|
|
11105
11121
|
// Temporary workaround for Conf being packaged in a Ubuntu Snap app.
|
|
11106
11122
|
// See https://github.com/sindresorhus/conf/pull/82
|
|
11107
11123
|
if (process.env.SNAP) {
|
|
11108
|
-
fs.writeFileSync(this.path, data);
|
|
11124
|
+
fs.writeFileSync(this.path, data, { mode: __classPrivateFieldGet(this, _Conf_options, "f").configFileMode });
|
|
11109
11125
|
}
|
|
11110
11126
|
else {
|
|
11111
11127
|
try {
|
|
11112
|
-
atomically.writeFileSync(this.path, data);
|
|
11128
|
+
atomically.writeFileSync(this.path, data, { mode: __classPrivateFieldGet(this, _Conf_options, "f").configFileMode });
|
|
11113
11129
|
}
|
|
11114
11130
|
catch (error) {
|
|
11115
11131
|
// Fix for https://github.com/sindresorhus/electron-store/issues/106
|
|
11116
11132
|
// Sometimes on Windows, we will get an EXDEV error when atomic writing
|
|
11117
11133
|
// (even though to the same directory), so we fall back to non atomic write
|
|
11118
11134
|
if ((error === null || error === void 0 ? void 0 : error.code) === 'EXDEV') {
|
|
11119
|
-
fs.writeFileSync(this.path, data);
|
|
11135
|
+
fs.writeFileSync(this.path, data, { mode: __classPrivateFieldGet(this, _Conf_options, "f").configFileMode });
|
|
11120
11136
|
return;
|
|
11121
11137
|
}
|
|
11122
11138
|
throw error;
|
|
@@ -12678,10 +12694,10 @@ module.exports = {
|
|
|
12678
12694
|
re: internalRe.re,
|
|
12679
12695
|
src: internalRe.src,
|
|
12680
12696
|
tokens: internalRe.t,
|
|
12681
|
-
SEMVER_SPEC_VERSION: __webpack_require__(/*! ./internal/constants */ "./node_modules/conf/node_modules/semver/internal/constants.js").SEMVER_SPEC_VERSION,
|
|
12697
|
+
SEMVER_SPEC_VERSION: (__webpack_require__(/*! ./internal/constants */ "./node_modules/conf/node_modules/semver/internal/constants.js").SEMVER_SPEC_VERSION),
|
|
12682
12698
|
SemVer: __webpack_require__(/*! ./classes/semver */ "./node_modules/conf/node_modules/semver/classes/semver.js"),
|
|
12683
|
-
compareIdentifiers: __webpack_require__(/*! ./internal/identifiers */ "./node_modules/conf/node_modules/semver/internal/identifiers.js").compareIdentifiers,
|
|
12684
|
-
rcompareIdentifiers: __webpack_require__(/*! ./internal/identifiers */ "./node_modules/conf/node_modules/semver/internal/identifiers.js").rcompareIdentifiers,
|
|
12699
|
+
compareIdentifiers: (__webpack_require__(/*! ./internal/identifiers */ "./node_modules/conf/node_modules/semver/internal/identifiers.js").compareIdentifiers),
|
|
12700
|
+
rcompareIdentifiers: (__webpack_require__(/*! ./internal/identifiers */ "./node_modules/conf/node_modules/semver/internal/identifiers.js").rcompareIdentifiers),
|
|
12685
12701
|
parse: __webpack_require__(/*! ./functions/parse */ "./node_modules/conf/node_modules/semver/functions/parse.js"),
|
|
12686
12702
|
valid: __webpack_require__(/*! ./functions/valid */ "./node_modules/conf/node_modules/semver/functions/valid.js"),
|
|
12687
12703
|
clean: __webpack_require__(/*! ./functions/clean */ "./node_modules/conf/node_modules/semver/functions/clean.js"),
|
|
@@ -14173,7 +14189,7 @@ module.exports = function equal(a, b) {
|
|
|
14173
14189
|
\********************************************/
|
|
14174
14190
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
14175
14191
|
|
|
14176
|
-
module.exports = __webpack_require__(/*! fs */ "fs").constants || __webpack_require__(/*! constants */ "constants")
|
|
14192
|
+
module.exports = (__webpack_require__(/*! fs */ "fs").constants) || __webpack_require__(/*! constants */ "constants")
|
|
14177
14193
|
|
|
14178
14194
|
|
|
14179
14195
|
/***/ }),
|
|
@@ -14189,8 +14205,8 @@ module.exports = __webpack_require__(/*! fs */ "fs").constants || __webpack_requ
|
|
|
14189
14205
|
|
|
14190
14206
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
14191
14207
|
const path = __webpack_require__(/*! path */ "path")
|
|
14192
|
-
const mkdirsSync = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirsSync
|
|
14193
|
-
const utimesMillisSync = __webpack_require__(/*! ../util/utimes */ "./node_modules/fs-extra/lib/util/utimes.js").utimesMillisSync
|
|
14208
|
+
const mkdirsSync = (__webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirsSync)
|
|
14209
|
+
const utimesMillisSync = (__webpack_require__(/*! ../util/utimes */ "./node_modules/fs-extra/lib/util/utimes.js").utimesMillisSync)
|
|
14194
14210
|
const stat = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
14195
14211
|
|
|
14196
14212
|
function copySync (src, dest, opts) {
|
|
@@ -14382,9 +14398,9 @@ module.exports = {
|
|
|
14382
14398
|
|
|
14383
14399
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
14384
14400
|
const path = __webpack_require__(/*! path */ "path")
|
|
14385
|
-
const mkdirs = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirs
|
|
14386
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
14387
|
-
const utimesMillis = __webpack_require__(/*! ../util/utimes */ "./node_modules/fs-extra/lib/util/utimes.js").utimesMillis
|
|
14401
|
+
const mkdirs = (__webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirs)
|
|
14402
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
14403
|
+
const utimesMillis = (__webpack_require__(/*! ../util/utimes */ "./node_modules/fs-extra/lib/util/utimes.js").utimesMillis)
|
|
14388
14404
|
const stat = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
14389
14405
|
|
|
14390
14406
|
function copy (src, dest, opts, cb) {
|
|
@@ -14623,7 +14639,7 @@ module.exports = copy
|
|
|
14623
14639
|
"use strict";
|
|
14624
14640
|
|
|
14625
14641
|
|
|
14626
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
14642
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
14627
14643
|
module.exports = {
|
|
14628
14644
|
copy: u(__webpack_require__(/*! ./copy */ "./node_modules/fs-extra/lib/copy/copy.js"))
|
|
14629
14645
|
}
|
|
@@ -14640,7 +14656,7 @@ module.exports = {
|
|
|
14640
14656
|
"use strict";
|
|
14641
14657
|
|
|
14642
14658
|
|
|
14643
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise
|
|
14659
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise)
|
|
14644
14660
|
const fs = __webpack_require__(/*! ../fs */ "./node_modules/fs-extra/lib/fs/index.js")
|
|
14645
14661
|
const path = __webpack_require__(/*! path */ "path")
|
|
14646
14662
|
const mkdir = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js")
|
|
@@ -14690,7 +14706,7 @@ module.exports = {
|
|
|
14690
14706
|
"use strict";
|
|
14691
14707
|
|
|
14692
14708
|
|
|
14693
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
14709
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
14694
14710
|
const path = __webpack_require__(/*! path */ "path")
|
|
14695
14711
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
14696
14712
|
const mkdir = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js")
|
|
@@ -14804,11 +14820,11 @@ module.exports = {
|
|
|
14804
14820
|
"use strict";
|
|
14805
14821
|
|
|
14806
14822
|
|
|
14807
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
14823
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
14808
14824
|
const path = __webpack_require__(/*! path */ "path")
|
|
14809
14825
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
14810
14826
|
const mkdir = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js")
|
|
14811
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
14827
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
14812
14828
|
const { areIdentical } = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
14813
14829
|
|
|
14814
14830
|
function createLink (srcpath, dstpath, callback) {
|
|
@@ -14881,7 +14897,7 @@ module.exports = {
|
|
|
14881
14897
|
|
|
14882
14898
|
const path = __webpack_require__(/*! path */ "path")
|
|
14883
14899
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
14884
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
14900
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
14885
14901
|
|
|
14886
14902
|
/**
|
|
14887
14903
|
* Function that returns two types of paths, one relative to symlink, and one
|
|
@@ -15031,7 +15047,7 @@ module.exports = {
|
|
|
15031
15047
|
"use strict";
|
|
15032
15048
|
|
|
15033
15049
|
|
|
15034
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
15050
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
15035
15051
|
const path = __webpack_require__(/*! path */ "path")
|
|
15036
15052
|
const fs = __webpack_require__(/*! ../fs */ "./node_modules/fs-extra/lib/fs/index.js")
|
|
15037
15053
|
const _mkdirs = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js")
|
|
@@ -15046,7 +15062,7 @@ const _symlinkType = __webpack_require__(/*! ./symlink-type */ "./node_modules/f
|
|
|
15046
15062
|
const symlinkType = _symlinkType.symlinkType
|
|
15047
15063
|
const symlinkTypeSync = _symlinkType.symlinkTypeSync
|
|
15048
15064
|
|
|
15049
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
15065
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
15050
15066
|
|
|
15051
15067
|
const { areIdentical } = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
15052
15068
|
|
|
@@ -15125,7 +15141,7 @@ module.exports = {
|
|
|
15125
15141
|
|
|
15126
15142
|
// This is adapted from https://github.com/normalize/mz
|
|
15127
15143
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
|
15128
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
15144
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
15129
15145
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
15130
15146
|
|
|
15131
15147
|
const api = [
|
|
@@ -15283,7 +15299,7 @@ module.exports = {
|
|
|
15283
15299
|
"use strict";
|
|
15284
15300
|
|
|
15285
15301
|
|
|
15286
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise
|
|
15302
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise)
|
|
15287
15303
|
const jsonFile = __webpack_require__(/*! ./jsonfile */ "./node_modules/fs-extra/lib/json/jsonfile.js")
|
|
15288
15304
|
|
|
15289
15305
|
jsonFile.outputJson = u(__webpack_require__(/*! ./output-json */ "./node_modules/fs-extra/lib/json/output-json.js"))
|
|
@@ -15377,7 +15393,7 @@ module.exports = outputJson
|
|
|
15377
15393
|
|
|
15378
15394
|
"use strict";
|
|
15379
15395
|
|
|
15380
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise
|
|
15396
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise)
|
|
15381
15397
|
const { makeDir: _makeDir, makeDirSync } = __webpack_require__(/*! ./make-dir */ "./node_modules/fs-extra/lib/mkdirs/make-dir.js")
|
|
15382
15398
|
const makeDir = u(_makeDir)
|
|
15383
15399
|
|
|
@@ -15491,9 +15507,9 @@ module.exports = {
|
|
|
15491
15507
|
|
|
15492
15508
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
15493
15509
|
const path = __webpack_require__(/*! path */ "path")
|
|
15494
|
-
const copySync = __webpack_require__(/*! ../copy-sync */ "./node_modules/fs-extra/lib/copy-sync/index.js").copySync
|
|
15495
|
-
const removeSync = __webpack_require__(/*! ../remove */ "./node_modules/fs-extra/lib/remove/index.js").removeSync
|
|
15496
|
-
const mkdirpSync = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirpSync
|
|
15510
|
+
const copySync = (__webpack_require__(/*! ../copy-sync */ "./node_modules/fs-extra/lib/copy-sync/index.js").copySync)
|
|
15511
|
+
const removeSync = (__webpack_require__(/*! ../remove */ "./node_modules/fs-extra/lib/remove/index.js").removeSync)
|
|
15512
|
+
const mkdirpSync = (__webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirpSync)
|
|
15497
15513
|
const stat = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
15498
15514
|
|
|
15499
15515
|
function moveSync (src, dest, opts) {
|
|
@@ -15554,7 +15570,7 @@ module.exports = moveSync
|
|
|
15554
15570
|
"use strict";
|
|
15555
15571
|
|
|
15556
15572
|
|
|
15557
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
15573
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
15558
15574
|
module.exports = {
|
|
15559
15575
|
move: u(__webpack_require__(/*! ./move */ "./node_modules/fs-extra/lib/move/move.js"))
|
|
15560
15576
|
}
|
|
@@ -15573,10 +15589,10 @@ module.exports = {
|
|
|
15573
15589
|
|
|
15574
15590
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
15575
15591
|
const path = __webpack_require__(/*! path */ "path")
|
|
15576
|
-
const copy = __webpack_require__(/*! ../copy */ "./node_modules/fs-extra/lib/copy/index.js").copy
|
|
15577
|
-
const remove = __webpack_require__(/*! ../remove */ "./node_modules/fs-extra/lib/remove/index.js").remove
|
|
15578
|
-
const mkdirp = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirp
|
|
15579
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
15592
|
+
const copy = (__webpack_require__(/*! ../copy */ "./node_modules/fs-extra/lib/copy/index.js").copy)
|
|
15593
|
+
const remove = (__webpack_require__(/*! ../remove */ "./node_modules/fs-extra/lib/remove/index.js").remove)
|
|
15594
|
+
const mkdirp = (__webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js").mkdirp)
|
|
15595
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
15580
15596
|
const stat = __webpack_require__(/*! ../util/stat */ "./node_modules/fs-extra/lib/util/stat.js")
|
|
15581
15597
|
|
|
15582
15598
|
function move (src, dest, opts, cb) {
|
|
@@ -15655,11 +15671,11 @@ module.exports = move
|
|
|
15655
15671
|
"use strict";
|
|
15656
15672
|
|
|
15657
15673
|
|
|
15658
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
15674
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
15659
15675
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
15660
15676
|
const path = __webpack_require__(/*! path */ "path")
|
|
15661
15677
|
const mkdir = __webpack_require__(/*! ../mkdirs */ "./node_modules/fs-extra/lib/mkdirs/index.js")
|
|
15662
|
-
const pathExists = __webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists
|
|
15678
|
+
const pathExists = (__webpack_require__(/*! ../path-exists */ "./node_modules/fs-extra/lib/path-exists/index.js").pathExists)
|
|
15663
15679
|
|
|
15664
15680
|
function outputFile (file, data, encoding, callback) {
|
|
15665
15681
|
if (typeof encoding === 'function') {
|
|
@@ -15705,7 +15721,7 @@ module.exports = {
|
|
|
15705
15721
|
|
|
15706
15722
|
"use strict";
|
|
15707
15723
|
|
|
15708
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise
|
|
15724
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromPromise)
|
|
15709
15725
|
const fs = __webpack_require__(/*! ../fs */ "./node_modules/fs-extra/lib/fs/index.js")
|
|
15710
15726
|
|
|
15711
15727
|
function pathExists (path) {
|
|
@@ -15730,7 +15746,7 @@ module.exports = {
|
|
|
15730
15746
|
|
|
15731
15747
|
|
|
15732
15748
|
const fs = __webpack_require__(/*! graceful-fs */ "./node_modules/graceful-fs/graceful-fs.js")
|
|
15733
|
-
const u = __webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback
|
|
15749
|
+
const u = (__webpack_require__(/*! universalify */ "./node_modules/universalify/index.js").fromCallback)
|
|
15734
15750
|
const rimraf = __webpack_require__(/*! ./rimraf */ "./node_modules/fs-extra/lib/remove/rimraf.js")
|
|
15735
15751
|
|
|
15736
15752
|
function remove (path, callback) {
|
|
@@ -16747,7 +16763,7 @@ function retry () {
|
|
|
16747
16763
|
\****************************************************/
|
|
16748
16764
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
16749
16765
|
|
|
16750
|
-
var Stream = __webpack_require__(/*! stream */ "stream").Stream
|
|
16766
|
+
var Stream = (__webpack_require__(/*! stream */ "stream").Stream)
|
|
16751
16767
|
|
|
16752
16768
|
module.exports = legacy
|
|
16753
16769
|
|
|
@@ -18659,7 +18675,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
18659
18675
|
|
|
18660
18676
|
/*<replacement>*/
|
|
18661
18677
|
|
|
18662
|
-
var Buffer = __webpack_require__(/*! safe-buffer */ "./node_modules/safe-buffer/index.js").Buffer;
|
|
18678
|
+
var Buffer = (__webpack_require__(/*! safe-buffer */ "./node_modules/safe-buffer/index.js").Buffer);
|
|
18663
18679
|
/*</replacement>*/
|
|
18664
18680
|
|
|
18665
18681
|
var isEncoding = Buffer.isEncoding || function (encoding) {
|
|
@@ -19304,8 +19320,8 @@ var util = __webpack_require__(/*! util */ "util")
|
|
|
19304
19320
|
var bl = __webpack_require__(/*! bl */ "./node_modules/bl/bl.js")
|
|
19305
19321
|
var headers = __webpack_require__(/*! ./headers */ "./node_modules/tar-stream/headers.js")
|
|
19306
19322
|
|
|
19307
|
-
var Writable = __webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Writable
|
|
19308
|
-
var PassThrough = __webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").PassThrough
|
|
19323
|
+
var Writable = (__webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Writable)
|
|
19324
|
+
var PassThrough = (__webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").PassThrough)
|
|
19309
19325
|
|
|
19310
19326
|
var noop = function () {}
|
|
19311
19327
|
|
|
@@ -20241,7 +20257,7 @@ var Duplex;
|
|
|
20241
20257
|
Readable.ReadableState = ReadableState;
|
|
20242
20258
|
/*<replacement>*/
|
|
20243
20259
|
|
|
20244
|
-
var EE = __webpack_require__(/*! events */ "events").EventEmitter;
|
|
20260
|
+
var EE = (__webpack_require__(/*! events */ "events").EventEmitter);
|
|
20245
20261
|
|
|
20246
20262
|
var EElistenerCount = function EElistenerCount(emitter, type) {
|
|
20247
20263
|
return emitter.listeners(type).length;
|
|
@@ -20255,7 +20271,7 @@ var Stream = __webpack_require__(/*! ./internal/streams/stream */ "./node_module
|
|
|
20255
20271
|
/*</replacement>*/
|
|
20256
20272
|
|
|
20257
20273
|
|
|
20258
|
-
var Buffer = __webpack_require__(/*! buffer */ "buffer").Buffer;
|
|
20274
|
+
var Buffer = (__webpack_require__(/*! buffer */ "buffer").Buffer);
|
|
20259
20275
|
|
|
20260
20276
|
var OurUint8Array = global.Uint8Array || function () {};
|
|
20261
20277
|
|
|
@@ -20288,7 +20304,7 @@ var destroyImpl = __webpack_require__(/*! ./internal/streams/destroy */ "./node_
|
|
|
20288
20304
|
var _require = __webpack_require__(/*! ./internal/streams/state */ "./node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/state.js"),
|
|
20289
20305
|
getHighWaterMark = _require.getHighWaterMark;
|
|
20290
20306
|
|
|
20291
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes,
|
|
20307
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes),
|
|
20292
20308
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
20293
20309
|
ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
|
|
20294
20310
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
@@ -20372,7 +20388,7 @@ function ReadableState(options, stream, isDuplex) {
|
|
|
20372
20388
|
this.encoding = null;
|
|
20373
20389
|
|
|
20374
20390
|
if (options.encoding) {
|
|
20375
|
-
if (!StringDecoder) StringDecoder = __webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
|
|
20391
|
+
if (!StringDecoder) StringDecoder = (__webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder);
|
|
20376
20392
|
this.decoder = new StringDecoder(options.encoding);
|
|
20377
20393
|
this.encoding = options.encoding;
|
|
20378
20394
|
}
|
|
@@ -20534,7 +20550,7 @@ Readable.prototype.isPaused = function () {
|
|
|
20534
20550
|
|
|
20535
20551
|
|
|
20536
20552
|
Readable.prototype.setEncoding = function (enc) {
|
|
20537
|
-
if (!StringDecoder) StringDecoder = __webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
|
|
20553
|
+
if (!StringDecoder) StringDecoder = (__webpack_require__(/*! string_decoder/ */ "./node_modules/string_decoder/lib/string_decoder.js").StringDecoder);
|
|
20538
20554
|
var decoder = new StringDecoder(enc);
|
|
20539
20555
|
this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8
|
|
20540
20556
|
|
|
@@ -21409,7 +21425,7 @@ function indexOf(xs, x) {
|
|
|
21409
21425
|
|
|
21410
21426
|
module.exports = Transform;
|
|
21411
21427
|
|
|
21412
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes,
|
|
21428
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes),
|
|
21413
21429
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
21414
21430
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
21415
21431
|
ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,
|
|
@@ -21624,7 +21640,7 @@ var Stream = __webpack_require__(/*! ./internal/streams/stream */ "./node_module
|
|
|
21624
21640
|
/*</replacement>*/
|
|
21625
21641
|
|
|
21626
21642
|
|
|
21627
|
-
var Buffer = __webpack_require__(/*! buffer */ "buffer").Buffer;
|
|
21643
|
+
var Buffer = (__webpack_require__(/*! buffer */ "buffer").Buffer);
|
|
21628
21644
|
|
|
21629
21645
|
var OurUint8Array = global.Uint8Array || function () {};
|
|
21630
21646
|
|
|
@@ -21641,7 +21657,7 @@ var destroyImpl = __webpack_require__(/*! ./internal/streams/destroy */ "./node_
|
|
|
21641
21657
|
var _require = __webpack_require__(/*! ./internal/streams/state */ "./node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/state.js"),
|
|
21642
21658
|
getHighWaterMark = _require.getHighWaterMark;
|
|
21643
21659
|
|
|
21644
|
-
var _require$codes = __webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes,
|
|
21660
|
+
var _require$codes = (__webpack_require__(/*! ../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes),
|
|
21645
21661
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
21646
21662
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
21647
21663
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
@@ -22818,7 +22834,7 @@ module.exports = {
|
|
|
22818
22834
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
22819
22835
|
|
|
22820
22836
|
|
|
22821
|
-
var ERR_STREAM_PREMATURE_CLOSE = __webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_STREAM_PREMATURE_CLOSE;
|
|
22837
|
+
var ERR_STREAM_PREMATURE_CLOSE = (__webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_STREAM_PREMATURE_CLOSE);
|
|
22822
22838
|
|
|
22823
22839
|
function once(callback) {
|
|
22824
22840
|
var called = false;
|
|
@@ -22940,7 +22956,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
22940
22956
|
|
|
22941
22957
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
22942
22958
|
|
|
22943
|
-
var ERR_INVALID_ARG_TYPE = __webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_INVALID_ARG_TYPE;
|
|
22959
|
+
var ERR_INVALID_ARG_TYPE = (__webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_INVALID_ARG_TYPE);
|
|
22944
22960
|
|
|
22945
22961
|
function from(Readable, iterable, opts) {
|
|
22946
22962
|
var iterator;
|
|
@@ -23017,7 +23033,7 @@ function once(callback) {
|
|
|
23017
23033
|
};
|
|
23018
23034
|
}
|
|
23019
23035
|
|
|
23020
|
-
var _require$codes = __webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes,
|
|
23036
|
+
var _require$codes = (__webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes),
|
|
23021
23037
|
ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,
|
|
23022
23038
|
ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
|
|
23023
23039
|
|
|
@@ -23111,7 +23127,7 @@ module.exports = pipeline;
|
|
|
23111
23127
|
"use strict";
|
|
23112
23128
|
|
|
23113
23129
|
|
|
23114
|
-
var ERR_INVALID_OPT_VALUE = __webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_INVALID_OPT_VALUE;
|
|
23130
|
+
var ERR_INVALID_OPT_VALUE = (__webpack_require__(/*! ../../../errors */ "./node_modules/tar-stream/node_modules/readable-stream/errors.js").codes.ERR_INVALID_OPT_VALUE);
|
|
23115
23131
|
|
|
23116
23132
|
function highWaterMarkFrom(options, isDuplex, duplexKey) {
|
|
23117
23133
|
return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
|
|
@@ -23187,9 +23203,9 @@ var eos = __webpack_require__(/*! end-of-stream */ "./node_modules/end-of-stream
|
|
|
23187
23203
|
var inherits = __webpack_require__(/*! inherits */ "./node_modules/inherits/inherits.js")
|
|
23188
23204
|
var alloc = Buffer.alloc
|
|
23189
23205
|
|
|
23190
|
-
var Readable = __webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Readable
|
|
23191
|
-
var Writable = __webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Writable
|
|
23192
|
-
var StringDecoder = __webpack_require__(/*! string_decoder */ "string_decoder").StringDecoder
|
|
23206
|
+
var Readable = (__webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Readable)
|
|
23207
|
+
var Writable = (__webpack_require__(/*! readable-stream */ "./node_modules/tar-stream/node_modules/readable-stream/readable.js").Writable)
|
|
23208
|
+
var StringDecoder = (__webpack_require__(/*! string_decoder */ "string_decoder").StringDecoder)
|
|
23193
23209
|
|
|
23194
23210
|
var headers = __webpack_require__(/*! ./headers */ "./node_modules/tar-stream/headers.js")
|
|
23195
23211
|
|
package/core/lib/sn/Button.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Container, Text, Sprite } from 'pixi.js';
|
|
1
|
+
import { Container, Text, Rectangle, Sprite, IDestroyOptions } from 'pixi.js';
|
|
2
2
|
import { IEvtMng } from './CmnLib';
|
|
3
3
|
import { HArg } from './CmnInterface';
|
|
4
4
|
import { Config } from './Config';
|
|
@@ -11,7 +11,10 @@ export declare class Button extends Container {
|
|
|
11
11
|
private readonly canFocus;
|
|
12
12
|
static fontFamily: string;
|
|
13
13
|
static init(cfg: Config): void;
|
|
14
|
+
setText(_text: string): void;
|
|
15
|
+
getBtnBounds: () => Rectangle;
|
|
14
16
|
constructor(hArg: HArg, evtMng: IEvtMng, resolve: () => void, canFocus: () => boolean);
|
|
17
|
+
destroy(_options?: IDestroyOptions | boolean): void;
|
|
15
18
|
makeDesignCast(_gdc: IMakeDesignCast): void;
|
|
16
19
|
showDesignCast(): void;
|
|
17
20
|
cvsResize(): void;
|