@inditextech/weave-renderer-konva-base 3.9.0 → 3.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/renderer-konva-base.js +36 -9
- package/dist/renderer-konva-base.node.js +36 -9
- package/dist/renderer-konva-base.node.stats.html +4950 -0
- package/dist/renderer-konva-base.stats.html +4950 -0
- package/dist/types.js +36 -9
- package/dist/types.js.map +1 -1
- package/dist/types.stats.html +4950 -0
- package/package.json +6 -6
package/dist/types.js
CHANGED
|
@@ -34,11 +34,11 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
34
34
|
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
|
|
35
35
|
var undefined$1;
|
|
36
36
|
/** Used as the semantic version number. */
|
|
37
|
-
var VERSION = "4.
|
|
37
|
+
var VERSION = "4.18.1";
|
|
38
38
|
/** Used as the size to enable large array optimizations. */
|
|
39
39
|
var LARGE_ARRAY_SIZE = 200;
|
|
40
40
|
/** Error message constants. */
|
|
41
|
-
var CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`";
|
|
41
|
+
var CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`", INVALID_TEMPL_IMPORTS_ERROR_TEXT = "Invalid `imports` option passed into `_.template`";
|
|
42
42
|
/** Used to stand-in for `undefined` hash values. */
|
|
43
43
|
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
|
44
44
|
/** Used as the maximum memoize cache size. */
|
|
@@ -1478,6 +1478,10 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
1478
1478
|
* embedded Ruby (ERB) as well as ES2015 template strings. Change the
|
|
1479
1479
|
* following template settings to use alternative delimiters.
|
|
1480
1480
|
*
|
|
1481
|
+
* **Security:** See
|
|
1482
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md)
|
|
1483
|
+
* — `_.template` is insecure and will be removed in v5.
|
|
1484
|
+
*
|
|
1481
1485
|
* @static
|
|
1482
1486
|
* @memberOf _
|
|
1483
1487
|
* @type {Object}
|
|
@@ -1880,7 +1884,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
1880
1884
|
* @name has
|
|
1881
1885
|
* @memberOf SetCache
|
|
1882
1886
|
* @param {*} value The value to search for.
|
|
1883
|
-
* @returns {
|
|
1887
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
1884
1888
|
*/
|
|
1885
1889
|
function setCacheHas(value) {
|
|
1886
1890
|
return this.__data__.has(value);
|
|
@@ -3418,8 +3422,15 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
3418
3422
|
*/
|
|
3419
3423
|
function baseUnset(object, path) {
|
|
3420
3424
|
path = castPath(path, object);
|
|
3421
|
-
|
|
3422
|
-
|
|
3425
|
+
var index = -1, length = path.length;
|
|
3426
|
+
if (!length) return true;
|
|
3427
|
+
while (++index < length) {
|
|
3428
|
+
var key = toKey(path[index]);
|
|
3429
|
+
if (key === "__proto__" && !hasOwnProperty.call(object, "__proto__")) return false;
|
|
3430
|
+
if ((key === "constructor" || key === "prototype") && index < length - 1) return false;
|
|
3431
|
+
}
|
|
3432
|
+
var obj = parent(object, path);
|
|
3433
|
+
return obj == null || delete obj[toKey(last(path))];
|
|
3423
3434
|
}
|
|
3424
3435
|
/**
|
|
3425
3436
|
* The base implementation of `_.update`.
|
|
@@ -5323,7 +5334,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
5323
5334
|
}
|
|
5324
5335
|
/**
|
|
5325
5336
|
* Creates an array with all falsey values removed. The values `false`, `null`,
|
|
5326
|
-
* `0`, `""`, `undefined`, and `NaN` are
|
|
5337
|
+
* `0`, `-0`, `0n`, `""`, `undefined`, and `NaN` are falsy.
|
|
5327
5338
|
*
|
|
5328
5339
|
* @static
|
|
5329
5340
|
* @memberOf _
|
|
@@ -5801,7 +5812,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
5801
5812
|
var index = -1, length = pairs == null ? 0 : pairs.length, result$1 = {};
|
|
5802
5813
|
while (++index < length) {
|
|
5803
5814
|
var pair = pairs[index];
|
|
5804
|
-
result$1
|
|
5815
|
+
baseAssignValue(result$1, pair[0], pair[1]);
|
|
5805
5816
|
}
|
|
5806
5817
|
return result$1;
|
|
5807
5818
|
}
|
|
@@ -11904,6 +11915,8 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
11904
11915
|
* **Note:** JavaScript follows the IEEE-754 standard for resolving
|
|
11905
11916
|
* floating-point values which can produce unexpected results.
|
|
11906
11917
|
*
|
|
11918
|
+
* **Note:** If `lower` is greater than `upper`, the values are swapped.
|
|
11919
|
+
*
|
|
11907
11920
|
* @static
|
|
11908
11921
|
* @memberOf _
|
|
11909
11922
|
* @since 0.7.0
|
|
@@ -11917,9 +11930,16 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
11917
11930
|
* _.random(0, 5);
|
|
11918
11931
|
* // => an integer between 0 and 5
|
|
11919
11932
|
*
|
|
11933
|
+
* // when lower is greater than upper the values are swapped
|
|
11934
|
+
* _.random(5, 0);
|
|
11935
|
+
* // => an integer between 0 and 5
|
|
11936
|
+
*
|
|
11920
11937
|
* _.random(5);
|
|
11921
11938
|
* // => also an integer between 0 and 5
|
|
11922
11939
|
*
|
|
11940
|
+
* _.random(-5);
|
|
11941
|
+
* // => an integer between -5 and 0
|
|
11942
|
+
*
|
|
11923
11943
|
* _.random(5, true);
|
|
11924
11944
|
* // => a floating-point number between 0 and 5
|
|
11925
11945
|
*
|
|
@@ -12452,6 +12472,10 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
12452
12472
|
* properties may be accessed as free variables in the template. If a setting
|
|
12453
12473
|
* object is given, it takes precedence over `_.templateSettings` values.
|
|
12454
12474
|
*
|
|
12475
|
+
* **Security:** `_.template` is insecure and should not be used. It will be
|
|
12476
|
+
* removed in Lodash v5. Avoid untrusted input. See
|
|
12477
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md).
|
|
12478
|
+
*
|
|
12455
12479
|
* **Note:** In the development build `_.template` utilizes
|
|
12456
12480
|
* [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
|
|
12457
12481
|
* for easier debugging.
|
|
@@ -12553,8 +12577,11 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
12553
12577
|
var settings = lodash.templateSettings;
|
|
12554
12578
|
if (guard && isIterateeCall(string, options, guard)) options = undefined$1;
|
|
12555
12579
|
string = toString(string);
|
|
12556
|
-
options =
|
|
12557
|
-
var imports =
|
|
12580
|
+
options = assignWith({}, options, settings, customDefaultsAssignIn);
|
|
12581
|
+
var imports = assignWith({}, options.imports, settings.imports, customDefaultsAssignIn), importsKeys = keys(imports), importsValues = baseValues(imports, importsKeys);
|
|
12582
|
+
arrayEach(importsKeys, function(key) {
|
|
12583
|
+
if (reForbiddenIdentifierChars.test(key)) throw new Error$1(INVALID_TEMPL_IMPORTS_ERROR_TEXT);
|
|
12584
|
+
});
|
|
12558
12585
|
var isEscaping, isEvaluating, index = 0, interpolate = options.interpolate || reNoMatch, source = "__p += '";
|
|
12559
12586
|
var reDelimiters = RegExp$1((options.escape || reNoMatch).source + "|" + interpolate.source + "|" + (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + "|" + (options.evaluate || reNoMatch).source + "|$", "g");
|
|
12560
12587
|
var sourceURL = "//# sourceURL=" + (hasOwnProperty.call(options, "sourceURL") ? (options.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++templateCounter + "]") + "\n";
|