@inditextech/weave-renderer-konva-react-reconciler 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-react-reconciler.js +36 -9
- package/dist/renderer-konva-react-reconciler.node.js +36 -9
- package/dist/renderer-konva-react-reconciler.node.stats.html +4950 -0
- package/dist/renderer-konva-react-reconciler.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
|
@@ -37,11 +37,11 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
37
37
|
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
|
|
38
38
|
var undefined$1;
|
|
39
39
|
/** Used as the semantic version number. */
|
|
40
|
-
var VERSION = "4.
|
|
40
|
+
var VERSION = "4.18.1";
|
|
41
41
|
/** Used as the size to enable large array optimizations. */
|
|
42
42
|
var LARGE_ARRAY_SIZE = 200;
|
|
43
43
|
/** Error message constants. */
|
|
44
|
-
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`";
|
|
44
|
+
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`";
|
|
45
45
|
/** Used to stand-in for `undefined` hash values. */
|
|
46
46
|
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
|
47
47
|
/** Used as the maximum memoize cache size. */
|
|
@@ -1481,6 +1481,10 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
1481
1481
|
* embedded Ruby (ERB) as well as ES2015 template strings. Change the
|
|
1482
1482
|
* following template settings to use alternative delimiters.
|
|
1483
1483
|
*
|
|
1484
|
+
* **Security:** See
|
|
1485
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md)
|
|
1486
|
+
* — `_.template` is insecure and will be removed in v5.
|
|
1487
|
+
*
|
|
1484
1488
|
* @static
|
|
1485
1489
|
* @memberOf _
|
|
1486
1490
|
* @type {Object}
|
|
@@ -1883,7 +1887,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
1883
1887
|
* @name has
|
|
1884
1888
|
* @memberOf SetCache
|
|
1885
1889
|
* @param {*} value The value to search for.
|
|
1886
|
-
* @returns {
|
|
1890
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
1887
1891
|
*/
|
|
1888
1892
|
function setCacheHas(value) {
|
|
1889
1893
|
return this.__data__.has(value);
|
|
@@ -3421,8 +3425,15 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
3421
3425
|
*/
|
|
3422
3426
|
function baseUnset(object, path) {
|
|
3423
3427
|
path = castPath(path, object);
|
|
3424
|
-
|
|
3425
|
-
|
|
3428
|
+
var index = -1, length = path.length;
|
|
3429
|
+
if (!length) return true;
|
|
3430
|
+
while (++index < length) {
|
|
3431
|
+
var key = toKey(path[index]);
|
|
3432
|
+
if (key === "__proto__" && !hasOwnProperty.call(object, "__proto__")) return false;
|
|
3433
|
+
if ((key === "constructor" || key === "prototype") && index < length - 1) return false;
|
|
3434
|
+
}
|
|
3435
|
+
var obj = parent(object, path);
|
|
3436
|
+
return obj == null || delete obj[toKey(last(path))];
|
|
3426
3437
|
}
|
|
3427
3438
|
/**
|
|
3428
3439
|
* The base implementation of `_.update`.
|
|
@@ -5326,7 +5337,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
5326
5337
|
}
|
|
5327
5338
|
/**
|
|
5328
5339
|
* Creates an array with all falsey values removed. The values `false`, `null`,
|
|
5329
|
-
* `0`, `""`, `undefined`, and `NaN` are
|
|
5340
|
+
* `0`, `-0`, `0n`, `""`, `undefined`, and `NaN` are falsy.
|
|
5330
5341
|
*
|
|
5331
5342
|
* @static
|
|
5332
5343
|
* @memberOf _
|
|
@@ -5804,7 +5815,7 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
5804
5815
|
var index = -1, length = pairs == null ? 0 : pairs.length, result$1 = {};
|
|
5805
5816
|
while (++index < length) {
|
|
5806
5817
|
var pair = pairs[index];
|
|
5807
|
-
result$1
|
|
5818
|
+
baseAssignValue(result$1, pair[0], pair[1]);
|
|
5808
5819
|
}
|
|
5809
5820
|
return result$1;
|
|
5810
5821
|
}
|
|
@@ -11907,6 +11918,8 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
11907
11918
|
* **Note:** JavaScript follows the IEEE-754 standard for resolving
|
|
11908
11919
|
* floating-point values which can produce unexpected results.
|
|
11909
11920
|
*
|
|
11921
|
+
* **Note:** If `lower` is greater than `upper`, the values are swapped.
|
|
11922
|
+
*
|
|
11910
11923
|
* @static
|
|
11911
11924
|
* @memberOf _
|
|
11912
11925
|
* @since 0.7.0
|
|
@@ -11920,9 +11933,16 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
11920
11933
|
* _.random(0, 5);
|
|
11921
11934
|
* // => an integer between 0 and 5
|
|
11922
11935
|
*
|
|
11936
|
+
* // when lower is greater than upper the values are swapped
|
|
11937
|
+
* _.random(5, 0);
|
|
11938
|
+
* // => an integer between 0 and 5
|
|
11939
|
+
*
|
|
11923
11940
|
* _.random(5);
|
|
11924
11941
|
* // => also an integer between 0 and 5
|
|
11925
11942
|
*
|
|
11943
|
+
* _.random(-5);
|
|
11944
|
+
* // => an integer between -5 and 0
|
|
11945
|
+
*
|
|
11926
11946
|
* _.random(5, true);
|
|
11927
11947
|
* // => a floating-point number between 0 and 5
|
|
11928
11948
|
*
|
|
@@ -12455,6 +12475,10 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
12455
12475
|
* properties may be accessed as free variables in the template. If a setting
|
|
12456
12476
|
* object is given, it takes precedence over `_.templateSettings` values.
|
|
12457
12477
|
*
|
|
12478
|
+
* **Security:** `_.template` is insecure and should not be used. It will be
|
|
12479
|
+
* removed in Lodash v5. Avoid untrusted input. See
|
|
12480
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md).
|
|
12481
|
+
*
|
|
12458
12482
|
* **Note:** In the development build `_.template` utilizes
|
|
12459
12483
|
* [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
|
|
12460
12484
|
* for easier debugging.
|
|
@@ -12556,8 +12580,11 @@ var require_lodash = __commonJS({ "../../node_modules/lodash/lodash.js"(exports,
|
|
|
12556
12580
|
var settings = lodash.templateSettings;
|
|
12557
12581
|
if (guard && isIterateeCall(string, options, guard)) options = undefined$1;
|
|
12558
12582
|
string = toString(string);
|
|
12559
|
-
options =
|
|
12560
|
-
var imports =
|
|
12583
|
+
options = assignWith({}, options, settings, customDefaultsAssignIn);
|
|
12584
|
+
var imports = assignWith({}, options.imports, settings.imports, customDefaultsAssignIn), importsKeys = keys(imports), importsValues = baseValues(imports, importsKeys);
|
|
12585
|
+
arrayEach(importsKeys, function(key) {
|
|
12586
|
+
if (reForbiddenIdentifierChars.test(key)) throw new Error$1(INVALID_TEMPL_IMPORTS_ERROR_TEXT);
|
|
12587
|
+
});
|
|
12561
12588
|
var isEscaping, isEvaluating, index = 0, interpolate = options.interpolate || reNoMatch, source = "__p += '";
|
|
12562
12589
|
var reDelimiters = RegExp$1((options.escape || reNoMatch).source + "|" + interpolate.source + "|" + (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + "|" + (options.evaluate || reNoMatch).source + "|$", "g");
|
|
12563
12590
|
var sourceURL = "//# sourceURL=" + (hasOwnProperty.call(options, "sourceURL") ? (options.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++templateCounter + "]") + "\n";
|