@wavemaker/angular-app 11.14.1-19.6462 → 11.14.1-21.64731
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/dependencies/pipe-provider.cjs.js +196 -170
- package/dependencies/transpilation-web.cjs.js +93 -79
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +104 -103
- package/package-lock.json +104 -103
- package/package.json +6 -6
|
@@ -124642,17 +124642,17 @@ var root$1 = freeGlobal$1 || freeSelf$1 || Function('return this')();
|
|
|
124642
124642
|
var Symbol$1$1 = root$1.Symbol;
|
|
124643
124643
|
|
|
124644
124644
|
/** Used for built-in method references. */
|
|
124645
|
-
var objectProto$
|
|
124645
|
+
var objectProto$i$1 = Object.prototype;
|
|
124646
124646
|
|
|
124647
124647
|
/** Used to check objects for own properties. */
|
|
124648
|
-
var hasOwnProperty$
|
|
124648
|
+
var hasOwnProperty$f$1 = objectProto$i$1.hasOwnProperty;
|
|
124649
124649
|
|
|
124650
124650
|
/**
|
|
124651
124651
|
* Used to resolve the
|
|
124652
124652
|
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
124653
124653
|
* of values.
|
|
124654
124654
|
*/
|
|
124655
|
-
var nativeObjectToString$1$1 = objectProto$
|
|
124655
|
+
var nativeObjectToString$1$1 = objectProto$i$1.toString;
|
|
124656
124656
|
|
|
124657
124657
|
/** Built-in value references. */
|
|
124658
124658
|
var symToStringTag$1$1 = Symbol$1$1 ? Symbol$1$1.toStringTag : undefined;
|
|
@@ -124665,7 +124665,7 @@ var symToStringTag$1$1 = Symbol$1$1 ? Symbol$1$1.toStringTag : undefined;
|
|
|
124665
124665
|
* @returns {string} Returns the raw `toStringTag`.
|
|
124666
124666
|
*/
|
|
124667
124667
|
function getRawTag$1(value) {
|
|
124668
|
-
var isOwn = hasOwnProperty$
|
|
124668
|
+
var isOwn = hasOwnProperty$f$1.call(value, symToStringTag$1$1),
|
|
124669
124669
|
tag = value[symToStringTag$1$1];
|
|
124670
124670
|
|
|
124671
124671
|
try {
|
|
@@ -124685,14 +124685,14 @@ function getRawTag$1(value) {
|
|
|
124685
124685
|
}
|
|
124686
124686
|
|
|
124687
124687
|
/** Used for built-in method references. */
|
|
124688
|
-
var objectProto$
|
|
124688
|
+
var objectProto$h$1 = Object.prototype;
|
|
124689
124689
|
|
|
124690
124690
|
/**
|
|
124691
124691
|
* Used to resolve the
|
|
124692
124692
|
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
124693
124693
|
* of values.
|
|
124694
124694
|
*/
|
|
124695
|
-
var nativeObjectToString$2 = objectProto$
|
|
124695
|
+
var nativeObjectToString$2 = objectProto$h$1.toString;
|
|
124696
124696
|
|
|
124697
124697
|
/**
|
|
124698
124698
|
* Converts `value` to a string using `Object.prototype.toString`.
|
|
@@ -125158,17 +125158,17 @@ var reIsHostCtor$1 = /^\[object .+?Constructor\]$/;
|
|
|
125158
125158
|
|
|
125159
125159
|
/** Used for built-in method references. */
|
|
125160
125160
|
var funcProto$1$1 = Function.prototype,
|
|
125161
|
-
objectProto$
|
|
125161
|
+
objectProto$g$1 = Object.prototype;
|
|
125162
125162
|
|
|
125163
125163
|
/** Used to resolve the decompiled source of functions. */
|
|
125164
125164
|
var funcToString$1$1 = funcProto$1$1.toString;
|
|
125165
125165
|
|
|
125166
125166
|
/** Used to check objects for own properties. */
|
|
125167
|
-
var hasOwnProperty$
|
|
125167
|
+
var hasOwnProperty$e$1 = objectProto$g$1.hasOwnProperty;
|
|
125168
125168
|
|
|
125169
125169
|
/** Used to detect if a method is native. */
|
|
125170
125170
|
var reIsNative$1 = RegExp('^' +
|
|
125171
|
-
funcToString$1$1.call(hasOwnProperty$
|
|
125171
|
+
funcToString$1$1.call(hasOwnProperty$e$1).replace(reRegExpChar$1, '\\$&')
|
|
125172
125172
|
.replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
|
|
125173
125173
|
);
|
|
125174
125174
|
|
|
@@ -125583,10 +125583,10 @@ function eq$1(value, other) {
|
|
|
125583
125583
|
}
|
|
125584
125584
|
|
|
125585
125585
|
/** Used for built-in method references. */
|
|
125586
|
-
var objectProto$
|
|
125586
|
+
var objectProto$f$1 = Object.prototype;
|
|
125587
125587
|
|
|
125588
125588
|
/** Used to check objects for own properties. */
|
|
125589
|
-
var hasOwnProperty$
|
|
125589
|
+
var hasOwnProperty$d$1 = objectProto$f$1.hasOwnProperty;
|
|
125590
125590
|
|
|
125591
125591
|
/**
|
|
125592
125592
|
* Assigns `value` to `key` of `object` if the existing value is not equivalent
|
|
@@ -125600,7 +125600,7 @@ var hasOwnProperty$c$1 = objectProto$e$1.hasOwnProperty;
|
|
|
125600
125600
|
*/
|
|
125601
125601
|
function assignValue$1(object, key, value) {
|
|
125602
125602
|
var objValue = object[key];
|
|
125603
|
-
if (!(hasOwnProperty$
|
|
125603
|
+
if (!(hasOwnProperty$d$1.call(object, key) && eq$1(objValue, value)) ||
|
|
125604
125604
|
(value === undefined && !(key in object))) {
|
|
125605
125605
|
baseAssignValue$1(object, key, value);
|
|
125606
125606
|
}
|
|
@@ -125806,7 +125806,7 @@ function createAssigner$1(assigner) {
|
|
|
125806
125806
|
}
|
|
125807
125807
|
|
|
125808
125808
|
/** Used for built-in method references. */
|
|
125809
|
-
var objectProto$
|
|
125809
|
+
var objectProto$e$1 = Object.prototype;
|
|
125810
125810
|
|
|
125811
125811
|
/**
|
|
125812
125812
|
* Checks if `value` is likely a prototype object.
|
|
@@ -125817,7 +125817,7 @@ var objectProto$d$1 = Object.prototype;
|
|
|
125817
125817
|
*/
|
|
125818
125818
|
function isPrototype$1(value) {
|
|
125819
125819
|
var Ctor = value && value.constructor,
|
|
125820
|
-
proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$
|
|
125820
|
+
proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$e$1;
|
|
125821
125821
|
|
|
125822
125822
|
return value === proto;
|
|
125823
125823
|
}
|
|
@@ -125856,13 +125856,13 @@ function baseIsArguments$1(value) {
|
|
|
125856
125856
|
}
|
|
125857
125857
|
|
|
125858
125858
|
/** Used for built-in method references. */
|
|
125859
|
-
var objectProto$
|
|
125859
|
+
var objectProto$d$1 = Object.prototype;
|
|
125860
125860
|
|
|
125861
125861
|
/** Used to check objects for own properties. */
|
|
125862
|
-
var hasOwnProperty$
|
|
125862
|
+
var hasOwnProperty$c$1 = objectProto$d$1.hasOwnProperty;
|
|
125863
125863
|
|
|
125864
125864
|
/** Built-in value references. */
|
|
125865
|
-
var propertyIsEnumerable$1$1 = objectProto$
|
|
125865
|
+
var propertyIsEnumerable$1$1 = objectProto$d$1.propertyIsEnumerable;
|
|
125866
125866
|
|
|
125867
125867
|
/**
|
|
125868
125868
|
* Checks if `value` is likely an `arguments` object.
|
|
@@ -125883,7 +125883,7 @@ var propertyIsEnumerable$1$1 = objectProto$c$1.propertyIsEnumerable;
|
|
|
125883
125883
|
* // => false
|
|
125884
125884
|
*/
|
|
125885
125885
|
var isArguments$1 = baseIsArguments$1(function() { return arguments; }()) ? baseIsArguments$1 : function(value) {
|
|
125886
|
-
return isObjectLike$1(value) && hasOwnProperty$
|
|
125886
|
+
return isObjectLike$1(value) && hasOwnProperty$c$1.call(value, 'callee') &&
|
|
125887
125887
|
!propertyIsEnumerable$1$1.call(value, 'callee');
|
|
125888
125888
|
};
|
|
125889
125889
|
|
|
@@ -126056,10 +126056,10 @@ var nodeIsTypedArray$1 = nodeUtil$1 && nodeUtil$1.isTypedArray;
|
|
|
126056
126056
|
var isTypedArray$1 = nodeIsTypedArray$1 ? baseUnary$1(nodeIsTypedArray$1) : baseIsTypedArray$1;
|
|
126057
126057
|
|
|
126058
126058
|
/** Used for built-in method references. */
|
|
126059
|
-
var objectProto$
|
|
126059
|
+
var objectProto$c$1 = Object.prototype;
|
|
126060
126060
|
|
|
126061
126061
|
/** Used to check objects for own properties. */
|
|
126062
|
-
var hasOwnProperty$
|
|
126062
|
+
var hasOwnProperty$b$1 = objectProto$c$1.hasOwnProperty;
|
|
126063
126063
|
|
|
126064
126064
|
/**
|
|
126065
126065
|
* Creates an array of the enumerable property names of the array-like `value`.
|
|
@@ -126079,7 +126079,7 @@ function arrayLikeKeys$1(value, inherited) {
|
|
|
126079
126079
|
length = result.length;
|
|
126080
126080
|
|
|
126081
126081
|
for (var key in value) {
|
|
126082
|
-
if ((inherited || hasOwnProperty$
|
|
126082
|
+
if ((inherited || hasOwnProperty$b$1.call(value, key)) &&
|
|
126083
126083
|
!(skipIndexes && (
|
|
126084
126084
|
// Safari 9 has enumerable `arguments.length` in strict mode.
|
|
126085
126085
|
key == 'length' ||
|
|
@@ -126114,10 +126114,10 @@ function overArg$1(func, transform) {
|
|
|
126114
126114
|
var nativeKeys$1 = overArg$1(Object.keys, Object);
|
|
126115
126115
|
|
|
126116
126116
|
/** Used for built-in method references. */
|
|
126117
|
-
var objectProto$
|
|
126117
|
+
var objectProto$b$1 = Object.prototype;
|
|
126118
126118
|
|
|
126119
126119
|
/** Used to check objects for own properties. */
|
|
126120
|
-
var hasOwnProperty$
|
|
126120
|
+
var hasOwnProperty$a$1 = objectProto$b$1.hasOwnProperty;
|
|
126121
126121
|
|
|
126122
126122
|
/**
|
|
126123
126123
|
* The base implementation of `_.keys` which doesn't treat sparse arrays as dense.
|
|
@@ -126132,7 +126132,7 @@ function baseKeys$1(object) {
|
|
|
126132
126132
|
}
|
|
126133
126133
|
var result = [];
|
|
126134
126134
|
for (var key in Object(object)) {
|
|
126135
|
-
if (hasOwnProperty$
|
|
126135
|
+
if (hasOwnProperty$a$1.call(object, key) && key != 'constructor') {
|
|
126136
126136
|
result.push(key);
|
|
126137
126137
|
}
|
|
126138
126138
|
}
|
|
@@ -126172,10 +126172,10 @@ function keys$1(object) {
|
|
|
126172
126172
|
}
|
|
126173
126173
|
|
|
126174
126174
|
/** Used for built-in method references. */
|
|
126175
|
-
var objectProto$
|
|
126175
|
+
var objectProto$a$1 = Object.prototype;
|
|
126176
126176
|
|
|
126177
126177
|
/** Used to check objects for own properties. */
|
|
126178
|
-
var hasOwnProperty$
|
|
126178
|
+
var hasOwnProperty$9$1 = objectProto$a$1.hasOwnProperty;
|
|
126179
126179
|
|
|
126180
126180
|
/**
|
|
126181
126181
|
* Assigns own enumerable string keyed properties of source objects to the
|
|
@@ -126215,7 +126215,7 @@ var assign$1 = createAssigner$1(function(object, source) {
|
|
|
126215
126215
|
return;
|
|
126216
126216
|
}
|
|
126217
126217
|
for (var key in source) {
|
|
126218
|
-
if (hasOwnProperty$
|
|
126218
|
+
if (hasOwnProperty$9$1.call(source, key)) {
|
|
126219
126219
|
assignValue$1(object, key, source[key]);
|
|
126220
126220
|
}
|
|
126221
126221
|
}
|
|
@@ -126241,10 +126241,10 @@ function nativeKeysIn$1(object) {
|
|
|
126241
126241
|
}
|
|
126242
126242
|
|
|
126243
126243
|
/** Used for built-in method references. */
|
|
126244
|
-
var objectProto$
|
|
126244
|
+
var objectProto$9$1 = Object.prototype;
|
|
126245
126245
|
|
|
126246
126246
|
/** Used to check objects for own properties. */
|
|
126247
|
-
var hasOwnProperty$
|
|
126247
|
+
var hasOwnProperty$8$1 = objectProto$9$1.hasOwnProperty;
|
|
126248
126248
|
|
|
126249
126249
|
/**
|
|
126250
126250
|
* The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
|
|
@@ -126261,7 +126261,7 @@ function baseKeysIn$1(object) {
|
|
|
126261
126261
|
result = [];
|
|
126262
126262
|
|
|
126263
126263
|
for (var key in object) {
|
|
126264
|
-
if (!(key == 'constructor' && (isProto || !hasOwnProperty$
|
|
126264
|
+
if (!(key == 'constructor' && (isProto || !hasOwnProperty$8$1.call(object, key)))) {
|
|
126265
126265
|
result.push(key);
|
|
126266
126266
|
}
|
|
126267
126267
|
}
|
|
@@ -126355,10 +126355,10 @@ function hashDelete$1(key) {
|
|
|
126355
126355
|
var HASH_UNDEFINED$2$1 = '__lodash_hash_undefined__';
|
|
126356
126356
|
|
|
126357
126357
|
/** Used for built-in method references. */
|
|
126358
|
-
var objectProto$
|
|
126358
|
+
var objectProto$8$1 = Object.prototype;
|
|
126359
126359
|
|
|
126360
126360
|
/** Used to check objects for own properties. */
|
|
126361
|
-
var hasOwnProperty$
|
|
126361
|
+
var hasOwnProperty$7$1 = objectProto$8$1.hasOwnProperty;
|
|
126362
126362
|
|
|
126363
126363
|
/**
|
|
126364
126364
|
* Gets the hash value for `key`.
|
|
@@ -126375,14 +126375,14 @@ function hashGet$1(key) {
|
|
|
126375
126375
|
var result = data[key];
|
|
126376
126376
|
return result === HASH_UNDEFINED$2$1 ? undefined : result;
|
|
126377
126377
|
}
|
|
126378
|
-
return hasOwnProperty$
|
|
126378
|
+
return hasOwnProperty$7$1.call(data, key) ? data[key] : undefined;
|
|
126379
126379
|
}
|
|
126380
126380
|
|
|
126381
126381
|
/** Used for built-in method references. */
|
|
126382
|
-
var objectProto$
|
|
126382
|
+
var objectProto$7$1 = Object.prototype;
|
|
126383
126383
|
|
|
126384
126384
|
/** Used to check objects for own properties. */
|
|
126385
|
-
var hasOwnProperty$
|
|
126385
|
+
var hasOwnProperty$6$1 = objectProto$7$1.hasOwnProperty;
|
|
126386
126386
|
|
|
126387
126387
|
/**
|
|
126388
126388
|
* Checks if a hash value for `key` exists.
|
|
@@ -126395,7 +126395,7 @@ var hasOwnProperty$5$1 = objectProto$6$1.hasOwnProperty;
|
|
|
126395
126395
|
*/
|
|
126396
126396
|
function hashHas$1(key) {
|
|
126397
126397
|
var data = this.__data__;
|
|
126398
|
-
return nativeCreate$1 ? (data[key] !== undefined) : hasOwnProperty$
|
|
126398
|
+
return nativeCreate$1 ? (data[key] !== undefined) : hasOwnProperty$6$1.call(data, key);
|
|
126399
126399
|
}
|
|
126400
126400
|
|
|
126401
126401
|
/** Used to stand-in for `undefined` hash values. */
|
|
@@ -127040,13 +127040,13 @@ var objectTag$3$1 = '[object Object]';
|
|
|
127040
127040
|
|
|
127041
127041
|
/** Used for built-in method references. */
|
|
127042
127042
|
var funcProto$3 = Function.prototype,
|
|
127043
|
-
objectProto$
|
|
127043
|
+
objectProto$6$1 = Object.prototype;
|
|
127044
127044
|
|
|
127045
127045
|
/** Used to resolve the decompiled source of functions. */
|
|
127046
127046
|
var funcToString$3 = funcProto$3.toString;
|
|
127047
127047
|
|
|
127048
127048
|
/** Used to check objects for own properties. */
|
|
127049
|
-
var hasOwnProperty$
|
|
127049
|
+
var hasOwnProperty$5$1 = objectProto$6$1.hasOwnProperty;
|
|
127050
127050
|
|
|
127051
127051
|
/** Used to infer the `Object` constructor. */
|
|
127052
127052
|
var objectCtorString$1 = funcToString$3.call(Object);
|
|
@@ -127087,7 +127087,7 @@ function isPlainObject$1(value) {
|
|
|
127087
127087
|
if (proto === null) {
|
|
127088
127088
|
return true;
|
|
127089
127089
|
}
|
|
127090
|
-
var Ctor = hasOwnProperty$
|
|
127090
|
+
var Ctor = hasOwnProperty$5$1.call(proto, 'constructor') && proto.constructor;
|
|
127091
127091
|
return typeof Ctor == 'function' && Ctor instanceof Ctor &&
|
|
127092
127092
|
funcToString$3.call(Ctor) == objectCtorString$1;
|
|
127093
127093
|
}
|
|
@@ -127892,10 +127892,10 @@ function stubArray$1() {
|
|
|
127892
127892
|
}
|
|
127893
127893
|
|
|
127894
127894
|
/** Used for built-in method references. */
|
|
127895
|
-
var objectProto$
|
|
127895
|
+
var objectProto$5$1 = Object.prototype;
|
|
127896
127896
|
|
|
127897
127897
|
/** Built-in value references. */
|
|
127898
|
-
var propertyIsEnumerable$2 = objectProto$
|
|
127898
|
+
var propertyIsEnumerable$2 = objectProto$5$1.propertyIsEnumerable;
|
|
127899
127899
|
|
|
127900
127900
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
127901
127901
|
var nativeGetSymbols$1$1 = Object.getOwnPropertySymbols;
|
|
@@ -128058,10 +128058,10 @@ if ((DataView$1$1 && getTag$1(new DataView$1$1(new ArrayBuffer(1))) != dataViewT
|
|
|
128058
128058
|
}
|
|
128059
128059
|
|
|
128060
128060
|
/** Used for built-in method references. */
|
|
128061
|
-
var objectProto$
|
|
128061
|
+
var objectProto$4$1 = Object.prototype;
|
|
128062
128062
|
|
|
128063
128063
|
/** Used to check objects for own properties. */
|
|
128064
|
-
var hasOwnProperty$
|
|
128064
|
+
var hasOwnProperty$4$1 = objectProto$4$1.hasOwnProperty;
|
|
128065
128065
|
|
|
128066
128066
|
/**
|
|
128067
128067
|
* Initializes an array clone.
|
|
@@ -128075,7 +128075,7 @@ function initCloneArray$1(array) {
|
|
|
128075
128075
|
result = new array.constructor(length);
|
|
128076
128076
|
|
|
128077
128077
|
// Add properties assigned by `RegExp#exec`.
|
|
128078
|
-
if (length && typeof array[0] == 'string' && hasOwnProperty$
|
|
128078
|
+
if (length && typeof array[0] == 'string' && hasOwnProperty$4$1.call(array, 'index')) {
|
|
128079
128079
|
result.index = array.index;
|
|
128080
128080
|
result.input = array.input;
|
|
128081
128081
|
}
|
|
@@ -128536,7 +128536,7 @@ function setCacheAdd$1(value) {
|
|
|
128536
128536
|
* @name has
|
|
128537
128537
|
* @memberOf SetCache
|
|
128538
128538
|
* @param {*} value The value to search for.
|
|
128539
|
-
* @returns {
|
|
128539
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
128540
128540
|
*/
|
|
128541
128541
|
function setCacheHas$1(value) {
|
|
128542
128542
|
return this.__data__.has(value);
|
|
@@ -128819,10 +128819,10 @@ function equalByTag$1(object, other, tag, bitmask, customizer, equalFunc, stack)
|
|
|
128819
128819
|
var COMPARE_PARTIAL_FLAG$3$1 = 1;
|
|
128820
128820
|
|
|
128821
128821
|
/** Used for built-in method references. */
|
|
128822
|
-
var objectProto$
|
|
128822
|
+
var objectProto$3$1 = Object.prototype;
|
|
128823
128823
|
|
|
128824
128824
|
/** Used to check objects for own properties. */
|
|
128825
|
-
var hasOwnProperty$
|
|
128825
|
+
var hasOwnProperty$3$1 = objectProto$3$1.hasOwnProperty;
|
|
128826
128826
|
|
|
128827
128827
|
/**
|
|
128828
128828
|
* A specialized version of `baseIsEqualDeep` for objects with support for
|
|
@@ -128850,7 +128850,7 @@ function equalObjects$1(object, other, bitmask, customizer, equalFunc, stack) {
|
|
|
128850
128850
|
var index = objLength;
|
|
128851
128851
|
while (index--) {
|
|
128852
128852
|
var key = objProps[index];
|
|
128853
|
-
if (!(isPartial ? key in other : hasOwnProperty$
|
|
128853
|
+
if (!(isPartial ? key in other : hasOwnProperty$3$1.call(other, key))) {
|
|
128854
128854
|
return false;
|
|
128855
128855
|
}
|
|
128856
128856
|
}
|
|
@@ -128911,10 +128911,10 @@ var argsTag$4 = '[object Arguments]',
|
|
|
128911
128911
|
objectTag$5 = '[object Object]';
|
|
128912
128912
|
|
|
128913
128913
|
/** Used for built-in method references. */
|
|
128914
|
-
var objectProto$
|
|
128914
|
+
var objectProto$2$1 = Object.prototype;
|
|
128915
128915
|
|
|
128916
128916
|
/** Used to check objects for own properties. */
|
|
128917
|
-
var hasOwnProperty$
|
|
128917
|
+
var hasOwnProperty$2$1 = objectProto$2$1.hasOwnProperty;
|
|
128918
128918
|
|
|
128919
128919
|
/**
|
|
128920
128920
|
* A specialized version of `baseIsEqual` for arrays and objects which performs
|
|
@@ -128957,8 +128957,8 @@ function baseIsEqualDeep$1(object, other, bitmask, customizer, equalFunc, stack)
|
|
|
128957
128957
|
: equalByTag$1(object, other, objTag, bitmask, customizer, equalFunc, stack);
|
|
128958
128958
|
}
|
|
128959
128959
|
if (!(bitmask & COMPARE_PARTIAL_FLAG$2$1)) {
|
|
128960
|
-
var objIsWrapped = objIsObj && hasOwnProperty$
|
|
128961
|
-
othIsWrapped = othIsObj && hasOwnProperty$
|
|
128960
|
+
var objIsWrapped = objIsObj && hasOwnProperty$2$1.call(object, '__wrapped__'),
|
|
128961
|
+
othIsWrapped = othIsObj && hasOwnProperty$2$1.call(other, '__wrapped__');
|
|
128962
128962
|
|
|
128963
128963
|
if (objIsWrapped || othIsWrapped) {
|
|
128964
128964
|
var objUnwrapped = objIsWrapped ? object.value() : object,
|
|
@@ -130372,10 +130372,10 @@ var mapTag$7 = '[object Map]',
|
|
|
130372
130372
|
setTag$7 = '[object Set]';
|
|
130373
130373
|
|
|
130374
130374
|
/** Used for built-in method references. */
|
|
130375
|
-
var objectProto$
|
|
130375
|
+
var objectProto$1$1 = Object.prototype;
|
|
130376
130376
|
|
|
130377
130377
|
/** Used to check objects for own properties. */
|
|
130378
|
-
var hasOwnProperty$
|
|
130378
|
+
var hasOwnProperty$1$1 = objectProto$1$1.hasOwnProperty;
|
|
130379
130379
|
|
|
130380
130380
|
/**
|
|
130381
130381
|
* Checks if `value` is an empty object, collection, map, or set.
|
|
@@ -130427,7 +130427,7 @@ function isEmpty$1(value) {
|
|
|
130427
130427
|
return !baseKeys$1(value).length;
|
|
130428
130428
|
}
|
|
130429
130429
|
for (var key in value) {
|
|
130430
|
-
if (hasOwnProperty$
|
|
130430
|
+
if (hasOwnProperty$1$1.call(value, key)) {
|
|
130431
130431
|
return false;
|
|
130432
130432
|
}
|
|
130433
130433
|
}
|
|
@@ -130651,6 +130651,12 @@ var merge$2 = createAssigner$1(function(object, source, srcIndex) {
|
|
|
130651
130651
|
baseMerge$1(object, source, srcIndex);
|
|
130652
130652
|
});
|
|
130653
130653
|
|
|
130654
|
+
/** Used for built-in method references. */
|
|
130655
|
+
var objectProto$j = Object.prototype;
|
|
130656
|
+
|
|
130657
|
+
/** Used to check objects for own properties. */
|
|
130658
|
+
var hasOwnProperty$g = objectProto$j.hasOwnProperty;
|
|
130659
|
+
|
|
130654
130660
|
/**
|
|
130655
130661
|
* The base implementation of `_.unset`.
|
|
130656
130662
|
*
|
|
@@ -130661,8 +130667,34 @@ var merge$2 = createAssigner$1(function(object, source, srcIndex) {
|
|
|
130661
130667
|
*/
|
|
130662
130668
|
function baseUnset$1(object, path) {
|
|
130663
130669
|
path = castPath$1(path, object);
|
|
130664
|
-
|
|
130665
|
-
|
|
130670
|
+
|
|
130671
|
+
// Prevent prototype pollution:
|
|
130672
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg
|
|
130673
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh
|
|
130674
|
+
var index = -1,
|
|
130675
|
+
length = path.length;
|
|
130676
|
+
|
|
130677
|
+
if (!length) {
|
|
130678
|
+
return true;
|
|
130679
|
+
}
|
|
130680
|
+
|
|
130681
|
+
while (++index < length) {
|
|
130682
|
+
var key = toKey$1(path[index]);
|
|
130683
|
+
|
|
130684
|
+
// Always block "__proto__" anywhere in the path if it's not expected
|
|
130685
|
+
if (key === '__proto__' && !hasOwnProperty$g.call(object, '__proto__')) {
|
|
130686
|
+
return false;
|
|
130687
|
+
}
|
|
130688
|
+
|
|
130689
|
+
// Block constructor/prototype as non-terminal traversal keys to prevent
|
|
130690
|
+
// escaping the object graph into built-in constructors and prototypes.
|
|
130691
|
+
if ((key === 'constructor' || key === 'prototype') && index < length - 1) {
|
|
130692
|
+
return false;
|
|
130693
|
+
}
|
|
130694
|
+
}
|
|
130695
|
+
|
|
130696
|
+
var obj = parent$1$1(object, path);
|
|
130697
|
+
return obj == null || delete obj[toKey$1(last$2(path))];
|
|
130666
130698
|
}
|
|
130667
130699
|
|
|
130668
130700
|
/**
|
|
@@ -147880,13 +147912,13 @@ const FIRST_TIME_WATCH$1 = {};
|
|
|
147880
147912
|
Object.freeze(FIRST_TIME_WATCH$1);
|
|
147881
147913
|
const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
|
|
147882
147914
|
let data = newVal, formattedData;
|
|
147883
|
-
if (
|
|
147915
|
+
if (isArray$1(data)) {
|
|
147884
147916
|
formattedData = data.map(function (datum) {
|
|
147885
147917
|
return findValueOf$1(datum, restExpr);
|
|
147886
147918
|
});
|
|
147887
147919
|
// If resulting structure is an array of array, flatten it
|
|
147888
|
-
if (
|
|
147889
|
-
formattedData =
|
|
147920
|
+
if (isArray$1(formattedData[0])) {
|
|
147921
|
+
formattedData = flatten$2(formattedData);
|
|
147890
147922
|
}
|
|
147891
147923
|
listenerFn(formattedData, oldVal);
|
|
147892
147924
|
}
|
|
@@ -147931,19 +147963,6 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
|
|
|
147931
147963
|
};
|
|
147932
147964
|
const $unwatch$1 = identifier => registry$1.delete(identifier);
|
|
147933
147965
|
window.watchRegistry = registry$1;
|
|
147934
|
-
window.__WM_DEBUG_WATCHERS__ = false;
|
|
147935
|
-
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
147936
|
-
if (force) {
|
|
147937
|
-
triggerWatchers(ignoreMuted);
|
|
147938
|
-
} else {
|
|
147939
|
-
|
|
147940
|
-
if (skipWatchers) {
|
|
147941
|
-
skipWatchers = false;
|
|
147942
|
-
return;
|
|
147943
|
-
}
|
|
147944
|
-
debouncedTriggerWatchers();
|
|
147945
|
-
}
|
|
147946
|
-
};*/
|
|
147947
147966
|
const $appDigest$1 = (() => {
|
|
147948
147967
|
return (force) => {
|
|
147949
147968
|
{
|
|
@@ -148006,8 +148025,8 @@ var Operation$1;
|
|
|
148006
148025
|
const DataSource$1 = {
|
|
148007
148026
|
Operation: Operation$1
|
|
148008
148027
|
};
|
|
148009
|
-
|
|
148010
|
-
}
|
|
148028
|
+
class App {
|
|
148029
|
+
}
|
|
148011
148030
|
let AbstractI18nService$1 = class AbstractI18nService {
|
|
148012
148031
|
};
|
|
148013
148032
|
|
|
@@ -148025,7 +148044,6 @@ const REGEX$1 = {
|
|
|
148025
148044
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
148026
148045
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
148027
148046
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
148028
|
-
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
148029
148047
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
148030
148048
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
148031
148049
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -148248,9 +148266,6 @@ const isVideoFile$1 = (fileName) => {
|
|
|
148248
148266
|
const isValidWebURL$1 = (url) => {
|
|
148249
148267
|
return (REGEX$1.VALID_WEB_URL).test(url);
|
|
148250
148268
|
};
|
|
148251
|
-
const isValidImageUrl$1 = (url) => {
|
|
148252
|
-
return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
|
|
148253
|
-
};
|
|
148254
148269
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
148255
148270
|
const getResourceURL$1 = (urlString) => {
|
|
148256
148271
|
return urlString;
|
|
@@ -149504,7 +149519,6 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
149504
149519
|
isPageable: isPageable$1,
|
|
149505
149520
|
isSafari: isSafari$1,
|
|
149506
149521
|
isTablet: isTablet$1,
|
|
149507
|
-
isValidImageUrl: isValidImageUrl$1,
|
|
149508
149522
|
isValidWebURL: isValidWebURL$1,
|
|
149509
149523
|
isVideoFile: isVideoFile$1,
|
|
149510
149524
|
loadScript: loadScript$1,
|
|
@@ -150739,14 +150753,14 @@ class ToDatePipe extends WmPipe {
|
|
|
150739
150753
|
}
|
|
150740
150754
|
return this.returnFn('', arguments, this.app.Variables);
|
|
150741
150755
|
}
|
|
150742
|
-
constructor(datePipe, i18nService,
|
|
150756
|
+
constructor(datePipe, i18nService, customPipeManager) {
|
|
150743
150757
|
super('toDate', customPipeManager);
|
|
150744
150758
|
this.datePipe = datePipe;
|
|
150745
150759
|
this.i18nService = i18nService;
|
|
150746
|
-
this.app = app;
|
|
150747
150760
|
this.customPipeManager = customPipeManager;
|
|
150761
|
+
this.app = inject(App);
|
|
150748
150762
|
}
|
|
150749
|
-
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(
|
|
150763
|
+
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150750
150764
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
|
|
150751
150765
|
}
|
|
150752
150766
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
|
|
@@ -150755,7 +150769,7 @@ class ToDatePipe extends WmPipe {
|
|
|
150755
150769
|
standalone: true,
|
|
150756
150770
|
name: 'toDate'
|
|
150757
150771
|
}]
|
|
150758
|
-
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type:
|
|
150772
|
+
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150759
150773
|
class ToNumberPipe {
|
|
150760
150774
|
transform(data, fracSize) {
|
|
150761
150775
|
if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
|
|
@@ -150843,9 +150857,9 @@ class SuffixPipe {
|
|
|
150843
150857
|
* Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
|
|
150844
150858
|
*/
|
|
150845
150859
|
class CustomPipe {
|
|
150846
|
-
constructor(
|
|
150847
|
-
this.app = app;
|
|
150860
|
+
constructor(custmeUserPipe) {
|
|
150848
150861
|
this.custmeUserPipe = custmeUserPipe;
|
|
150862
|
+
this.app = inject(App);
|
|
150849
150863
|
}
|
|
150850
150864
|
transform(data, pipename) {
|
|
150851
150865
|
let argumentArr = [];
|
|
@@ -150865,7 +150879,7 @@ class CustomPipe {
|
|
|
150865
150879
|
return data;
|
|
150866
150880
|
}
|
|
150867
150881
|
}
|
|
150868
|
-
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(
|
|
150882
|
+
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150869
150883
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
|
|
150870
150884
|
}
|
|
150871
150885
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
|
|
@@ -150874,7 +150888,7 @@ class CustomPipe {
|
|
|
150874
150888
|
standalone: true,
|
|
150875
150889
|
name: 'custom'
|
|
150876
150890
|
}]
|
|
150877
|
-
}], () => [{ type:
|
|
150891
|
+
}], () => [{ type: CustomPipeManager$1 }], null); })();
|
|
150878
150892
|
class TimeFromNowPipe {
|
|
150879
150893
|
transform(data) {
|
|
150880
150894
|
let timestamp;
|
|
@@ -181364,17 +181378,17 @@ var root = freeGlobal || freeSelf || Function('return this')();
|
|
|
181364
181378
|
var Symbol$1 = root.Symbol;
|
|
181365
181379
|
|
|
181366
181380
|
/** Used for built-in method references. */
|
|
181367
|
-
var objectProto$
|
|
181381
|
+
var objectProto$i = Object.prototype;
|
|
181368
181382
|
|
|
181369
181383
|
/** Used to check objects for own properties. */
|
|
181370
|
-
var hasOwnProperty$
|
|
181384
|
+
var hasOwnProperty$f = objectProto$i.hasOwnProperty;
|
|
181371
181385
|
|
|
181372
181386
|
/**
|
|
181373
181387
|
* Used to resolve the
|
|
181374
181388
|
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
181375
181389
|
* of values.
|
|
181376
181390
|
*/
|
|
181377
|
-
var nativeObjectToString$1 = objectProto$
|
|
181391
|
+
var nativeObjectToString$1 = objectProto$i.toString;
|
|
181378
181392
|
|
|
181379
181393
|
/** Built-in value references. */
|
|
181380
181394
|
var symToStringTag$1 = Symbol$1 ? Symbol$1.toStringTag : undefined;
|
|
@@ -181387,7 +181401,7 @@ var symToStringTag$1 = Symbol$1 ? Symbol$1.toStringTag : undefined;
|
|
|
181387
181401
|
* @returns {string} Returns the raw `toStringTag`.
|
|
181388
181402
|
*/
|
|
181389
181403
|
function getRawTag(value) {
|
|
181390
|
-
var isOwn = hasOwnProperty$
|
|
181404
|
+
var isOwn = hasOwnProperty$f.call(value, symToStringTag$1),
|
|
181391
181405
|
tag = value[symToStringTag$1];
|
|
181392
181406
|
|
|
181393
181407
|
try {
|
|
@@ -181407,14 +181421,14 @@ function getRawTag(value) {
|
|
|
181407
181421
|
}
|
|
181408
181422
|
|
|
181409
181423
|
/** Used for built-in method references. */
|
|
181410
|
-
var objectProto$
|
|
181424
|
+
var objectProto$h = Object.prototype;
|
|
181411
181425
|
|
|
181412
181426
|
/**
|
|
181413
181427
|
* Used to resolve the
|
|
181414
181428
|
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
181415
181429
|
* of values.
|
|
181416
181430
|
*/
|
|
181417
|
-
var nativeObjectToString = objectProto$
|
|
181431
|
+
var nativeObjectToString = objectProto$h.toString;
|
|
181418
181432
|
|
|
181419
181433
|
/**
|
|
181420
181434
|
* Converts `value` to a string using `Object.prototype.toString`.
|
|
@@ -181880,17 +181894,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
|
|
|
181880
181894
|
|
|
181881
181895
|
/** Used for built-in method references. */
|
|
181882
181896
|
var funcProto$1 = Function.prototype,
|
|
181883
|
-
objectProto$
|
|
181897
|
+
objectProto$g = Object.prototype;
|
|
181884
181898
|
|
|
181885
181899
|
/** Used to resolve the decompiled source of functions. */
|
|
181886
181900
|
var funcToString$1 = funcProto$1.toString;
|
|
181887
181901
|
|
|
181888
181902
|
/** Used to check objects for own properties. */
|
|
181889
|
-
var hasOwnProperty$
|
|
181903
|
+
var hasOwnProperty$e = objectProto$g.hasOwnProperty;
|
|
181890
181904
|
|
|
181891
181905
|
/** Used to detect if a method is native. */
|
|
181892
181906
|
var reIsNative = RegExp('^' +
|
|
181893
|
-
funcToString$1.call(hasOwnProperty$
|
|
181907
|
+
funcToString$1.call(hasOwnProperty$e).replace(reRegExpChar, '\\$&')
|
|
181894
181908
|
.replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
|
|
181895
181909
|
);
|
|
181896
181910
|
|
|
@@ -182305,10 +182319,10 @@ function eq(value, other) {
|
|
|
182305
182319
|
}
|
|
182306
182320
|
|
|
182307
182321
|
/** Used for built-in method references. */
|
|
182308
|
-
var objectProto$
|
|
182322
|
+
var objectProto$f = Object.prototype;
|
|
182309
182323
|
|
|
182310
182324
|
/** Used to check objects for own properties. */
|
|
182311
|
-
var hasOwnProperty$
|
|
182325
|
+
var hasOwnProperty$d = objectProto$f.hasOwnProperty;
|
|
182312
182326
|
|
|
182313
182327
|
/**
|
|
182314
182328
|
* Assigns `value` to `key` of `object` if the existing value is not equivalent
|
|
@@ -182322,7 +182336,7 @@ var hasOwnProperty$c = objectProto$e.hasOwnProperty;
|
|
|
182322
182336
|
*/
|
|
182323
182337
|
function assignValue(object, key, value) {
|
|
182324
182338
|
var objValue = object[key];
|
|
182325
|
-
if (!(hasOwnProperty$
|
|
182339
|
+
if (!(hasOwnProperty$d.call(object, key) && eq(objValue, value)) ||
|
|
182326
182340
|
(value === undefined && !(key in object))) {
|
|
182327
182341
|
baseAssignValue(object, key, value);
|
|
182328
182342
|
}
|
|
@@ -182528,7 +182542,7 @@ function createAssigner(assigner) {
|
|
|
182528
182542
|
}
|
|
182529
182543
|
|
|
182530
182544
|
/** Used for built-in method references. */
|
|
182531
|
-
var objectProto$
|
|
182545
|
+
var objectProto$e = Object.prototype;
|
|
182532
182546
|
|
|
182533
182547
|
/**
|
|
182534
182548
|
* Checks if `value` is likely a prototype object.
|
|
@@ -182539,7 +182553,7 @@ var objectProto$d = Object.prototype;
|
|
|
182539
182553
|
*/
|
|
182540
182554
|
function isPrototype(value) {
|
|
182541
182555
|
var Ctor = value && value.constructor,
|
|
182542
|
-
proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$
|
|
182556
|
+
proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$e;
|
|
182543
182557
|
|
|
182544
182558
|
return value === proto;
|
|
182545
182559
|
}
|
|
@@ -182578,13 +182592,13 @@ function baseIsArguments(value) {
|
|
|
182578
182592
|
}
|
|
182579
182593
|
|
|
182580
182594
|
/** Used for built-in method references. */
|
|
182581
|
-
var objectProto$
|
|
182595
|
+
var objectProto$d = Object.prototype;
|
|
182582
182596
|
|
|
182583
182597
|
/** Used to check objects for own properties. */
|
|
182584
|
-
var hasOwnProperty$
|
|
182598
|
+
var hasOwnProperty$c = objectProto$d.hasOwnProperty;
|
|
182585
182599
|
|
|
182586
182600
|
/** Built-in value references. */
|
|
182587
|
-
var propertyIsEnumerable$1 = objectProto$
|
|
182601
|
+
var propertyIsEnumerable$1 = objectProto$d.propertyIsEnumerable;
|
|
182588
182602
|
|
|
182589
182603
|
/**
|
|
182590
182604
|
* Checks if `value` is likely an `arguments` object.
|
|
@@ -182605,7 +182619,7 @@ var propertyIsEnumerable$1 = objectProto$c.propertyIsEnumerable;
|
|
|
182605
182619
|
* // => false
|
|
182606
182620
|
*/
|
|
182607
182621
|
var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
|
|
182608
|
-
return isObjectLike(value) && hasOwnProperty$
|
|
182622
|
+
return isObjectLike(value) && hasOwnProperty$c.call(value, 'callee') &&
|
|
182609
182623
|
!propertyIsEnumerable$1.call(value, 'callee');
|
|
182610
182624
|
};
|
|
182611
182625
|
|
|
@@ -182778,10 +182792,10 @@ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
|
|
182778
182792
|
var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
|
182779
182793
|
|
|
182780
182794
|
/** Used for built-in method references. */
|
|
182781
|
-
var objectProto$
|
|
182795
|
+
var objectProto$c = Object.prototype;
|
|
182782
182796
|
|
|
182783
182797
|
/** Used to check objects for own properties. */
|
|
182784
|
-
var hasOwnProperty$
|
|
182798
|
+
var hasOwnProperty$b = objectProto$c.hasOwnProperty;
|
|
182785
182799
|
|
|
182786
182800
|
/**
|
|
182787
182801
|
* Creates an array of the enumerable property names of the array-like `value`.
|
|
@@ -182801,7 +182815,7 @@ function arrayLikeKeys(value, inherited) {
|
|
|
182801
182815
|
length = result.length;
|
|
182802
182816
|
|
|
182803
182817
|
for (var key in value) {
|
|
182804
|
-
if ((inherited || hasOwnProperty$
|
|
182818
|
+
if ((inherited || hasOwnProperty$b.call(value, key)) &&
|
|
182805
182819
|
!(skipIndexes && (
|
|
182806
182820
|
// Safari 9 has enumerable `arguments.length` in strict mode.
|
|
182807
182821
|
key == 'length' ||
|
|
@@ -182836,10 +182850,10 @@ function overArg(func, transform) {
|
|
|
182836
182850
|
var nativeKeys = overArg(Object.keys, Object);
|
|
182837
182851
|
|
|
182838
182852
|
/** Used for built-in method references. */
|
|
182839
|
-
var objectProto$
|
|
182853
|
+
var objectProto$b = Object.prototype;
|
|
182840
182854
|
|
|
182841
182855
|
/** Used to check objects for own properties. */
|
|
182842
|
-
var hasOwnProperty$
|
|
182856
|
+
var hasOwnProperty$a = objectProto$b.hasOwnProperty;
|
|
182843
182857
|
|
|
182844
182858
|
/**
|
|
182845
182859
|
* The base implementation of `_.keys` which doesn't treat sparse arrays as dense.
|
|
@@ -182854,7 +182868,7 @@ function baseKeys(object) {
|
|
|
182854
182868
|
}
|
|
182855
182869
|
var result = [];
|
|
182856
182870
|
for (var key in Object(object)) {
|
|
182857
|
-
if (hasOwnProperty$
|
|
182871
|
+
if (hasOwnProperty$a.call(object, key) && key != 'constructor') {
|
|
182858
182872
|
result.push(key);
|
|
182859
182873
|
}
|
|
182860
182874
|
}
|
|
@@ -182894,10 +182908,10 @@ function keys(object) {
|
|
|
182894
182908
|
}
|
|
182895
182909
|
|
|
182896
182910
|
/** Used for built-in method references. */
|
|
182897
|
-
var objectProto$
|
|
182911
|
+
var objectProto$a = Object.prototype;
|
|
182898
182912
|
|
|
182899
182913
|
/** Used to check objects for own properties. */
|
|
182900
|
-
var hasOwnProperty$
|
|
182914
|
+
var hasOwnProperty$9 = objectProto$a.hasOwnProperty;
|
|
182901
182915
|
|
|
182902
182916
|
/**
|
|
182903
182917
|
* Assigns own enumerable string keyed properties of source objects to the
|
|
@@ -182937,7 +182951,7 @@ var assign = createAssigner(function(object, source) {
|
|
|
182937
182951
|
return;
|
|
182938
182952
|
}
|
|
182939
182953
|
for (var key in source) {
|
|
182940
|
-
if (hasOwnProperty$
|
|
182954
|
+
if (hasOwnProperty$9.call(source, key)) {
|
|
182941
182955
|
assignValue(object, key, source[key]);
|
|
182942
182956
|
}
|
|
182943
182957
|
}
|
|
@@ -182963,10 +182977,10 @@ function nativeKeysIn(object) {
|
|
|
182963
182977
|
}
|
|
182964
182978
|
|
|
182965
182979
|
/** Used for built-in method references. */
|
|
182966
|
-
var objectProto$
|
|
182980
|
+
var objectProto$9 = Object.prototype;
|
|
182967
182981
|
|
|
182968
182982
|
/** Used to check objects for own properties. */
|
|
182969
|
-
var hasOwnProperty$
|
|
182983
|
+
var hasOwnProperty$8 = objectProto$9.hasOwnProperty;
|
|
182970
182984
|
|
|
182971
182985
|
/**
|
|
182972
182986
|
* The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
|
|
@@ -182983,7 +182997,7 @@ function baseKeysIn(object) {
|
|
|
182983
182997
|
result = [];
|
|
182984
182998
|
|
|
182985
182999
|
for (var key in object) {
|
|
182986
|
-
if (!(key == 'constructor' && (isProto || !hasOwnProperty$
|
|
183000
|
+
if (!(key == 'constructor' && (isProto || !hasOwnProperty$8.call(object, key)))) {
|
|
182987
183001
|
result.push(key);
|
|
182988
183002
|
}
|
|
182989
183003
|
}
|
|
@@ -183077,10 +183091,10 @@ function hashDelete(key) {
|
|
|
183077
183091
|
var HASH_UNDEFINED$2 = '__lodash_hash_undefined__';
|
|
183078
183092
|
|
|
183079
183093
|
/** Used for built-in method references. */
|
|
183080
|
-
var objectProto$
|
|
183094
|
+
var objectProto$8 = Object.prototype;
|
|
183081
183095
|
|
|
183082
183096
|
/** Used to check objects for own properties. */
|
|
183083
|
-
var hasOwnProperty$
|
|
183097
|
+
var hasOwnProperty$7 = objectProto$8.hasOwnProperty;
|
|
183084
183098
|
|
|
183085
183099
|
/**
|
|
183086
183100
|
* Gets the hash value for `key`.
|
|
@@ -183097,14 +183111,14 @@ function hashGet(key) {
|
|
|
183097
183111
|
var result = data[key];
|
|
183098
183112
|
return result === HASH_UNDEFINED$2 ? undefined : result;
|
|
183099
183113
|
}
|
|
183100
|
-
return hasOwnProperty$
|
|
183114
|
+
return hasOwnProperty$7.call(data, key) ? data[key] : undefined;
|
|
183101
183115
|
}
|
|
183102
183116
|
|
|
183103
183117
|
/** Used for built-in method references. */
|
|
183104
|
-
var objectProto$
|
|
183118
|
+
var objectProto$7 = Object.prototype;
|
|
183105
183119
|
|
|
183106
183120
|
/** Used to check objects for own properties. */
|
|
183107
|
-
var hasOwnProperty$
|
|
183121
|
+
var hasOwnProperty$6 = objectProto$7.hasOwnProperty;
|
|
183108
183122
|
|
|
183109
183123
|
/**
|
|
183110
183124
|
* Checks if a hash value for `key` exists.
|
|
@@ -183117,7 +183131,7 @@ var hasOwnProperty$5 = objectProto$6.hasOwnProperty;
|
|
|
183117
183131
|
*/
|
|
183118
183132
|
function hashHas(key) {
|
|
183119
183133
|
var data = this.__data__;
|
|
183120
|
-
return nativeCreate ? (data[key] !== undefined) : hasOwnProperty$
|
|
183134
|
+
return nativeCreate ? (data[key] !== undefined) : hasOwnProperty$6.call(data, key);
|
|
183121
183135
|
}
|
|
183122
183136
|
|
|
183123
183137
|
/** Used to stand-in for `undefined` hash values. */
|
|
@@ -183762,13 +183776,13 @@ var objectTag$3 = '[object Object]';
|
|
|
183762
183776
|
|
|
183763
183777
|
/** Used for built-in method references. */
|
|
183764
183778
|
var funcProto = Function.prototype,
|
|
183765
|
-
objectProto$
|
|
183779
|
+
objectProto$6 = Object.prototype;
|
|
183766
183780
|
|
|
183767
183781
|
/** Used to resolve the decompiled source of functions. */
|
|
183768
183782
|
var funcToString = funcProto.toString;
|
|
183769
183783
|
|
|
183770
183784
|
/** Used to check objects for own properties. */
|
|
183771
|
-
var hasOwnProperty$
|
|
183785
|
+
var hasOwnProperty$5 = objectProto$6.hasOwnProperty;
|
|
183772
183786
|
|
|
183773
183787
|
/** Used to infer the `Object` constructor. */
|
|
183774
183788
|
var objectCtorString = funcToString.call(Object);
|
|
@@ -183809,7 +183823,7 @@ function isPlainObject(value) {
|
|
|
183809
183823
|
if (proto === null) {
|
|
183810
183824
|
return true;
|
|
183811
183825
|
}
|
|
183812
|
-
var Ctor = hasOwnProperty$
|
|
183826
|
+
var Ctor = hasOwnProperty$5.call(proto, 'constructor') && proto.constructor;
|
|
183813
183827
|
return typeof Ctor == 'function' && Ctor instanceof Ctor &&
|
|
183814
183828
|
funcToString.call(Ctor) == objectCtorString;
|
|
183815
183829
|
}
|
|
@@ -184614,10 +184628,10 @@ function stubArray() {
|
|
|
184614
184628
|
}
|
|
184615
184629
|
|
|
184616
184630
|
/** Used for built-in method references. */
|
|
184617
|
-
var objectProto$
|
|
184631
|
+
var objectProto$5 = Object.prototype;
|
|
184618
184632
|
|
|
184619
184633
|
/** Built-in value references. */
|
|
184620
|
-
var propertyIsEnumerable = objectProto$
|
|
184634
|
+
var propertyIsEnumerable = objectProto$5.propertyIsEnumerable;
|
|
184621
184635
|
|
|
184622
184636
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
184623
184637
|
var nativeGetSymbols$1 = Object.getOwnPropertySymbols;
|
|
@@ -184780,10 +184794,10 @@ if ((DataView$1 && getTag(new DataView$1(new ArrayBuffer(1))) != dataViewTag$3)
|
|
|
184780
184794
|
}
|
|
184781
184795
|
|
|
184782
184796
|
/** Used for built-in method references. */
|
|
184783
|
-
var objectProto$
|
|
184797
|
+
var objectProto$4 = Object.prototype;
|
|
184784
184798
|
|
|
184785
184799
|
/** Used to check objects for own properties. */
|
|
184786
|
-
var hasOwnProperty$
|
|
184800
|
+
var hasOwnProperty$4 = objectProto$4.hasOwnProperty;
|
|
184787
184801
|
|
|
184788
184802
|
/**
|
|
184789
184803
|
* Initializes an array clone.
|
|
@@ -184797,7 +184811,7 @@ function initCloneArray(array) {
|
|
|
184797
184811
|
result = new array.constructor(length);
|
|
184798
184812
|
|
|
184799
184813
|
// Add properties assigned by `RegExp#exec`.
|
|
184800
|
-
if (length && typeof array[0] == 'string' && hasOwnProperty$
|
|
184814
|
+
if (length && typeof array[0] == 'string' && hasOwnProperty$4.call(array, 'index')) {
|
|
184801
184815
|
result.index = array.index;
|
|
184802
184816
|
result.input = array.input;
|
|
184803
184817
|
}
|
|
@@ -185258,7 +185272,7 @@ function setCacheAdd(value) {
|
|
|
185258
185272
|
* @name has
|
|
185259
185273
|
* @memberOf SetCache
|
|
185260
185274
|
* @param {*} value The value to search for.
|
|
185261
|
-
* @returns {
|
|
185275
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
185262
185276
|
*/
|
|
185263
185277
|
function setCacheHas(value) {
|
|
185264
185278
|
return this.__data__.has(value);
|
|
@@ -185541,10 +185555,10 @@ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
|
|
|
185541
185555
|
var COMPARE_PARTIAL_FLAG$3 = 1;
|
|
185542
185556
|
|
|
185543
185557
|
/** Used for built-in method references. */
|
|
185544
|
-
var objectProto$
|
|
185558
|
+
var objectProto$3 = Object.prototype;
|
|
185545
185559
|
|
|
185546
185560
|
/** Used to check objects for own properties. */
|
|
185547
|
-
var hasOwnProperty$
|
|
185561
|
+
var hasOwnProperty$3 = objectProto$3.hasOwnProperty;
|
|
185548
185562
|
|
|
185549
185563
|
/**
|
|
185550
185564
|
* A specialized version of `baseIsEqualDeep` for objects with support for
|
|
@@ -185572,7 +185586,7 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|
|
185572
185586
|
var index = objLength;
|
|
185573
185587
|
while (index--) {
|
|
185574
185588
|
var key = objProps[index];
|
|
185575
|
-
if (!(isPartial ? key in other : hasOwnProperty$
|
|
185589
|
+
if (!(isPartial ? key in other : hasOwnProperty$3.call(other, key))) {
|
|
185576
185590
|
return false;
|
|
185577
185591
|
}
|
|
185578
185592
|
}
|
|
@@ -185633,10 +185647,10 @@ var argsTag = '[object Arguments]',
|
|
|
185633
185647
|
objectTag = '[object Object]';
|
|
185634
185648
|
|
|
185635
185649
|
/** Used for built-in method references. */
|
|
185636
|
-
var objectProto$
|
|
185650
|
+
var objectProto$2 = Object.prototype;
|
|
185637
185651
|
|
|
185638
185652
|
/** Used to check objects for own properties. */
|
|
185639
|
-
var hasOwnProperty$
|
|
185653
|
+
var hasOwnProperty$2 = objectProto$2.hasOwnProperty;
|
|
185640
185654
|
|
|
185641
185655
|
/**
|
|
185642
185656
|
* A specialized version of `baseIsEqual` for arrays and objects which performs
|
|
@@ -185679,8 +185693,8 @@ function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
|
|
|
185679
185693
|
: equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);
|
|
185680
185694
|
}
|
|
185681
185695
|
if (!(bitmask & COMPARE_PARTIAL_FLAG$2)) {
|
|
185682
|
-
var objIsWrapped = objIsObj && hasOwnProperty$
|
|
185683
|
-
othIsWrapped = othIsObj && hasOwnProperty$
|
|
185696
|
+
var objIsWrapped = objIsObj && hasOwnProperty$2.call(object, '__wrapped__'),
|
|
185697
|
+
othIsWrapped = othIsObj && hasOwnProperty$2.call(other, '__wrapped__');
|
|
185684
185698
|
|
|
185685
185699
|
if (objIsWrapped || othIsWrapped) {
|
|
185686
185700
|
var objUnwrapped = objIsWrapped ? object.value() : object,
|
|
@@ -187094,10 +187108,10 @@ var mapTag = '[object Map]',
|
|
|
187094
187108
|
setTag = '[object Set]';
|
|
187095
187109
|
|
|
187096
187110
|
/** Used for built-in method references. */
|
|
187097
|
-
var objectProto = Object.prototype;
|
|
187111
|
+
var objectProto$1 = Object.prototype;
|
|
187098
187112
|
|
|
187099
187113
|
/** Used to check objects for own properties. */
|
|
187100
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
187114
|
+
var hasOwnProperty$1 = objectProto$1.hasOwnProperty;
|
|
187101
187115
|
|
|
187102
187116
|
/**
|
|
187103
187117
|
* Checks if `value` is an empty object, collection, map, or set.
|
|
@@ -187149,7 +187163,7 @@ function isEmpty(value) {
|
|
|
187149
187163
|
return !baseKeys(value).length;
|
|
187150
187164
|
}
|
|
187151
187165
|
for (var key in value) {
|
|
187152
|
-
if (hasOwnProperty.call(value, key)) {
|
|
187166
|
+
if (hasOwnProperty$1.call(value, key)) {
|
|
187153
187167
|
return false;
|
|
187154
187168
|
}
|
|
187155
187169
|
}
|
|
@@ -187373,6 +187387,12 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
187373
187387
|
baseMerge(object, source, srcIndex);
|
|
187374
187388
|
});
|
|
187375
187389
|
|
|
187390
|
+
/** Used for built-in method references. */
|
|
187391
|
+
var objectProto = Object.prototype;
|
|
187392
|
+
|
|
187393
|
+
/** Used to check objects for own properties. */
|
|
187394
|
+
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
187395
|
+
|
|
187376
187396
|
/**
|
|
187377
187397
|
* The base implementation of `_.unset`.
|
|
187378
187398
|
*
|
|
@@ -187383,8 +187403,34 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
187383
187403
|
*/
|
|
187384
187404
|
function baseUnset(object, path) {
|
|
187385
187405
|
path = castPath(path, object);
|
|
187386
|
-
|
|
187387
|
-
|
|
187406
|
+
|
|
187407
|
+
// Prevent prototype pollution:
|
|
187408
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg
|
|
187409
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh
|
|
187410
|
+
var index = -1,
|
|
187411
|
+
length = path.length;
|
|
187412
|
+
|
|
187413
|
+
if (!length) {
|
|
187414
|
+
return true;
|
|
187415
|
+
}
|
|
187416
|
+
|
|
187417
|
+
while (++index < length) {
|
|
187418
|
+
var key = toKey(path[index]);
|
|
187419
|
+
|
|
187420
|
+
// Always block "__proto__" anywhere in the path if it's not expected
|
|
187421
|
+
if (key === '__proto__' && !hasOwnProperty.call(object, '__proto__')) {
|
|
187422
|
+
return false;
|
|
187423
|
+
}
|
|
187424
|
+
|
|
187425
|
+
// Block constructor/prototype as non-terminal traversal keys to prevent
|
|
187426
|
+
// escaping the object graph into built-in constructors and prototypes.
|
|
187427
|
+
if ((key === 'constructor' || key === 'prototype') && index < length - 1) {
|
|
187428
|
+
return false;
|
|
187429
|
+
}
|
|
187430
|
+
}
|
|
187431
|
+
|
|
187432
|
+
var obj = parent$1(object, path);
|
|
187433
|
+
return obj == null || delete obj[toKey(last(path))];
|
|
187388
187434
|
}
|
|
187389
187435
|
|
|
187390
187436
|
/**
|
|
@@ -203537,13 +203583,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
203537
203583
|
Object.freeze(FIRST_TIME_WATCH);
|
|
203538
203584
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
203539
203585
|
let data = newVal, formattedData;
|
|
203540
|
-
if (
|
|
203586
|
+
if (isArray(data)) {
|
|
203541
203587
|
formattedData = data.map(function (datum) {
|
|
203542
203588
|
return findValueOf(datum, restExpr);
|
|
203543
203589
|
});
|
|
203544
203590
|
// If resulting structure is an array of array, flatten it
|
|
203545
|
-
if (
|
|
203546
|
-
formattedData =
|
|
203591
|
+
if (isArray(formattedData[0])) {
|
|
203592
|
+
formattedData = flatten(formattedData);
|
|
203547
203593
|
}
|
|
203548
203594
|
listenerFn(formattedData, oldVal);
|
|
203549
203595
|
}
|
|
@@ -203588,19 +203634,6 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
203588
203634
|
};
|
|
203589
203635
|
const $unwatch = identifier => registry.delete(identifier);
|
|
203590
203636
|
window.watchRegistry = registry;
|
|
203591
|
-
window.__WM_DEBUG_WATCHERS__ = false;
|
|
203592
|
-
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
203593
|
-
if (force) {
|
|
203594
|
-
triggerWatchers(ignoreMuted);
|
|
203595
|
-
} else {
|
|
203596
|
-
|
|
203597
|
-
if (skipWatchers) {
|
|
203598
|
-
skipWatchers = false;
|
|
203599
|
-
return;
|
|
203600
|
-
}
|
|
203601
|
-
debouncedTriggerWatchers();
|
|
203602
|
-
}
|
|
203603
|
-
};*/
|
|
203604
203637
|
const $appDigest = (() => {
|
|
203605
203638
|
return (force) => {
|
|
203606
203639
|
{
|
|
@@ -203663,8 +203696,6 @@ var Operation;
|
|
|
203663
203696
|
const DataSource = {
|
|
203664
203697
|
Operation
|
|
203665
203698
|
};
|
|
203666
|
-
class App {
|
|
203667
|
-
}
|
|
203668
203699
|
class AbstractI18nService {
|
|
203669
203700
|
}
|
|
203670
203701
|
|
|
@@ -203682,7 +203713,6 @@ const REGEX = {
|
|
|
203682
203713
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
203683
203714
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
203684
203715
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
203685
|
-
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
203686
203716
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
203687
203717
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
203688
203718
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -203905,9 +203935,6 @@ const isVideoFile = (fileName) => {
|
|
|
203905
203935
|
const isValidWebURL = (url) => {
|
|
203906
203936
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
203907
203937
|
};
|
|
203908
|
-
const isValidImageUrl = (url) => {
|
|
203909
|
-
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
203910
|
-
};
|
|
203911
203938
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
203912
203939
|
const getResourceURL = (urlString) => {
|
|
203913
203940
|
return urlString;
|
|
@@ -205161,7 +205188,6 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
205161
205188
|
isPageable: isPageable,
|
|
205162
205189
|
isSafari: isSafari,
|
|
205163
205190
|
isTablet: isTablet,
|
|
205164
|
-
isValidImageUrl: isValidImageUrl,
|
|
205165
205191
|
isValidWebURL: isValidWebURL,
|
|
205166
205192
|
isVideoFile: isVideoFile,
|
|
205167
205193
|
loadScript: loadScript,
|
|
@@ -208001,7 +208027,7 @@ class PipeProvider {
|
|
|
208001
208027
|
this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
|
|
208002
208028
|
this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
|
|
208003
208029
|
this.preparePipeMeta(ToDatePipe, 'toDate', true, [
|
|
208004
|
-
new DatePipe$1(this._locale), undefined, this.injector.get(
|
|
208030
|
+
new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
|
|
208005
208031
|
]),
|
|
208006
208032
|
this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
|
|
208007
208033
|
new DecimalPipe$1(this._locale),
|
|
@@ -208018,7 +208044,7 @@ class PipeProvider {
|
|
|
208018
208044
|
new DecimalPipe$1(this._locale)
|
|
208019
208045
|
]),
|
|
208020
208046
|
this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
|
|
208021
|
-
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(
|
|
208047
|
+
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
|
|
208022
208048
|
this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
|
|
208023
208049
|
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
|
|
208024
208050
|
this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
|