@wavemaker/angular-app 12.0.0-next.141221 → 12.0.0-next.47809

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.
@@ -648,7 +648,7 @@ function fingerprint(str) {
648
648
  let lo = hash32(view, utf8.length, 102072);
649
649
  if (hi == 0 && (lo == 0 || lo == 1)) {
650
650
  hi = hi ^ 0x130f9bef;
651
- lo = lo ^ -0x6b5f56d8;
651
+ lo = lo ^ -1801410264;
652
652
  }
653
653
  return (BigInt.asUintN(32, BigInt(hi)) << BigInt(32)) | BigInt.asUintN(32, BigInt(lo));
654
654
  }
@@ -27811,7 +27811,6 @@ class CompilerFacadeImpl {
27811
27811
  name: facade.name,
27812
27812
  type: wrapReference(facade.type),
27813
27813
  typeArgumentCount: 0,
27814
- deps: null,
27815
27814
  pipeName: facade.pipeName,
27816
27815
  pure: facade.pure,
27817
27816
  isStandalone: facade.isStandalone,
@@ -28696,9 +28695,6 @@ function arrayMap(array, iteratee) {
28696
28695
  */
28697
28696
  var isArray = Array.isArray;
28698
28697
 
28699
- /** Used as references for various `Number` constants. */
28700
- var INFINITY$5 = 1 / 0;
28701
-
28702
28698
  /** Used to convert symbols to primitives and strings. */
28703
28699
  var symbolProto$2 = Symbol$1 ? Symbol$1.prototype : undefined,
28704
28700
  symbolToString = symbolProto$2 ? symbolProto$2.toString : undefined;
@@ -28724,7 +28720,7 @@ function baseToString(value) {
28724
28720
  return symbolToString ? symbolToString.call(value) : '';
28725
28721
  }
28726
28722
  var result = (value + '');
28727
- return (result == '0' && (1 / value) == -INFINITY$5) ? '-0' : result;
28723
+ return (result == '0' && (1 / value) == -Infinity) ? '-0' : result;
28728
28724
  }
28729
28725
 
28730
28726
  /**
@@ -28904,7 +28900,7 @@ function toNumber(value) {
28904
28900
  }
28905
28901
 
28906
28902
  /** Used as references for various `Number` constants. */
28907
- var INFINITY$4 = 1 / 0,
28903
+ var INFINITY$3 = 1 / 0,
28908
28904
  MAX_INTEGER = 1.7976931348623157e+308;
28909
28905
 
28910
28906
  /**
@@ -28935,7 +28931,7 @@ function toFinite(value) {
28935
28931
  return value === 0 ? value : 0;
28936
28932
  }
28937
28933
  value = toNumber(value);
28938
- if (value === INFINITY$4 || value === -INFINITY$4) {
28934
+ if (value === INFINITY$3 || value === -Infinity) {
28939
28935
  var sign = (value < 0 ? -1 : 1);
28940
28936
  return sign * MAX_INTEGER;
28941
28937
  }
@@ -29258,7 +29254,7 @@ function createCtor(Ctor) {
29258
29254
  }
29259
29255
 
29260
29256
  /** Used to compose bitmasks for function metadata. */
29261
- var WRAP_BIND_FLAG$8 = 1;
29257
+ var WRAP_BIND_FLAG$7 = 1;
29262
29258
 
29263
29259
  /**
29264
29260
  * Creates a function that wraps `func` to invoke it with the optional `this`
@@ -29271,7 +29267,7 @@ var WRAP_BIND_FLAG$8 = 1;
29271
29267
  * @returns {Function} Returns the new wrapped function.
29272
29268
  */
29273
29269
  function createBind(func, bitmask, thisArg) {
29274
- var isBind = bitmask & WRAP_BIND_FLAG$8,
29270
+ var isBind = bitmask & WRAP_BIND_FLAG$7,
29275
29271
  Ctor = createCtor(func);
29276
29272
 
29277
29273
  function wrapper() {
@@ -29963,8 +29959,8 @@ function arrayIncludes(array, value) {
29963
29959
  }
29964
29960
 
29965
29961
  /** Used to compose bitmasks for function metadata. */
29966
- var WRAP_BIND_FLAG$7 = 1,
29967
- WRAP_BIND_KEY_FLAG$6 = 2,
29962
+ var WRAP_BIND_FLAG$6 = 1,
29963
+ WRAP_BIND_KEY_FLAG$5 = 2,
29968
29964
  WRAP_CURRY_FLAG$6 = 8,
29969
29965
  WRAP_CURRY_RIGHT_FLAG$3 = 16,
29970
29966
  WRAP_PARTIAL_FLAG$6 = 32,
@@ -29976,8 +29972,8 @@ var WRAP_BIND_FLAG$7 = 1,
29976
29972
  /** Used to associate wrap methods with their bit flags. */
29977
29973
  var wrapFlags = [
29978
29974
  ['ary', WRAP_ARY_FLAG$4],
29979
- ['bind', WRAP_BIND_FLAG$7],
29980
- ['bindKey', WRAP_BIND_KEY_FLAG$6],
29975
+ ['bind', WRAP_BIND_FLAG$6],
29976
+ ['bindKey', WRAP_BIND_KEY_FLAG$5],
29981
29977
  ['curry', WRAP_CURRY_FLAG$6],
29982
29978
  ['curryRight', WRAP_CURRY_RIGHT_FLAG$3],
29983
29979
  ['flip', WRAP_FLIP_FLAG$2],
@@ -30020,9 +30016,7 @@ function setWrapToString(wrapper, reference, bitmask) {
30020
30016
  }
30021
30017
 
30022
30018
  /** Used to compose bitmasks for function metadata. */
30023
- var WRAP_BIND_FLAG$6 = 1,
30024
- WRAP_BIND_KEY_FLAG$5 = 2,
30025
- WRAP_CURRY_BOUND_FLAG$1 = 4,
30019
+ var WRAP_CURRY_BOUND_FLAG$1 = 4,
30026
30020
  WRAP_CURRY_FLAG$5 = 8,
30027
30021
  WRAP_PARTIAL_FLAG$5 = 32,
30028
30022
  WRAP_PARTIAL_RIGHT_FLAG$2 = 64;
@@ -30055,7 +30049,7 @@ function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials,
30055
30049
  bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG$2 : WRAP_PARTIAL_FLAG$5);
30056
30050
 
30057
30051
  if (!(bitmask & WRAP_CURRY_BOUND_FLAG$1)) {
30058
- bitmask &= ~(WRAP_BIND_FLAG$6 | WRAP_BIND_KEY_FLAG$5);
30052
+ bitmask &= -4;
30059
30053
  }
30060
30054
  var newData = [
30061
30055
  func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,
@@ -30446,7 +30440,7 @@ function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arit
30446
30440
  }
30447
30441
  var length = partials ? partials.length : 0;
30448
30442
  if (!length) {
30449
- bitmask &= ~(WRAP_PARTIAL_FLAG$4 | WRAP_PARTIAL_RIGHT_FLAG$1);
30443
+ bitmask &= -97;
30450
30444
  partials = holders = undefined;
30451
30445
  }
30452
30446
  ary = ary === undefined ? ary : nativeMax$e(toInteger(ary), 0);
@@ -30479,7 +30473,7 @@ function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arit
30479
30473
  : nativeMax$e(newData[9] - length, 0);
30480
30474
 
30481
30475
  if (!arity && bitmask & (WRAP_CURRY_FLAG$2 | WRAP_CURRY_RIGHT_FLAG$1)) {
30482
- bitmask &= ~(WRAP_CURRY_FLAG$2 | WRAP_CURRY_RIGHT_FLAG$1);
30476
+ bitmask &= -25;
30483
30477
  }
30484
30478
  if (!bitmask || bitmask == WRAP_BIND_FLAG$2) {
30485
30479
  var result = createBind(func, bitmask, thisArg);
@@ -31970,9 +31964,6 @@ function castPath(value, object) {
31970
31964
  return isKey(value, object) ? [value] : stringToPath(toString(value));
31971
31965
  }
31972
31966
 
31973
- /** Used as references for various `Number` constants. */
31974
- var INFINITY$3 = 1 / 0;
31975
-
31976
31967
  /**
31977
31968
  * Converts `value` to a string key if it's not a string or symbol.
31978
31969
  *
@@ -31985,7 +31976,7 @@ function toKey(value) {
31985
31976
  return value;
31986
31977
  }
31987
31978
  var result = (value + '');
31988
- return (result == '0' && (1 / value) == -INFINITY$3) ? '-0' : result;
31979
+ return (result == '0' && (1 / value) == -Infinity) ? '-0' : result;
31989
31980
  }
31990
31981
 
31991
31982
  /**
@@ -39413,7 +39404,7 @@ var MAX_SAFE_INTEGER$3 = 9007199254740991;
39413
39404
  * // => false
39414
39405
  */
39415
39406
  function isSafeInteger(value) {
39416
- return isInteger(value) && value >= -MAX_SAFE_INTEGER$3 && value <= MAX_SAFE_INTEGER$3;
39407
+ return isInteger(value) && value >= -9007199254740991 && value <= MAX_SAFE_INTEGER$3;
39417
39408
  }
39418
39409
 
39419
39410
  /**
@@ -44393,7 +44384,7 @@ var MAX_SAFE_INTEGER = 9007199254740991;
44393
44384
  */
44394
44385
  function toSafeInteger(value) {
44395
44386
  return value
44396
- ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)
44387
+ ? baseClamp(toInteger(value), -9007199254740991, MAX_SAFE_INTEGER)
44397
44388
  : (value === 0 ? value : 0);
44398
44389
  }
44399
44390
 
@@ -45648,10 +45639,10 @@ var zipWith = baseRest(function(arrays) {
45648
45639
  var array = {
45649
45640
  chunk, compact, concat, difference, differenceBy,
45650
45641
  differenceWith, drop, dropRight, dropRightWhile, dropWhile,
45651
- fill, findIndex, findLastIndex, first: head, flatten,
45642
+ fill, findIndex, findLastIndex, flatten,
45652
45643
  flattenDeep, flattenDepth, fromPairs, head, indexOf,
45653
45644
  initial, intersection, intersectionBy, intersectionWith, join,
45654
- last, lastIndexOf, nth, pull, pullAll,
45645
+ lastIndexOf, nth, pull, pullAll,
45655
45646
  pullAllBy, pullAllWith, pullAt, remove, reverse,
45656
45647
  slice, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex,
45657
45648
  sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, tail,
@@ -45662,7 +45653,7 @@ var array = {
45662
45653
  };
45663
45654
 
45664
45655
  var collection = {
45665
- countBy, each: forEach, eachRight: forEachRight, every, filter,
45656
+ countBy, every, filter,
45666
45657
  find, findLast, flatMap, flatMapDeep, flatMapDepth,
45667
45658
  forEach, forEachRight, groupBy, includes, invokeMap,
45668
45659
  keyBy, map, orderBy, partition, reduce,
@@ -45677,7 +45668,7 @@ var date = {
45677
45668
  var func = {
45678
45669
  after, ary, before, bind, bindKey,
45679
45670
  curry, curryRight, debounce, defer, delay,
45680
- flip, memoize, negate, once, overArgs,
45671
+ flip, memoize, once, overArgs,
45681
45672
  partial, partialRight, rearg, rest, spread,
45682
45673
  throttle, unary, wrap
45683
45674
  };
@@ -45685,15 +45676,14 @@ var func = {
45685
45676
  var lang = {
45686
45677
  castArray, clone, cloneDeep, cloneDeepWith, cloneWith,
45687
45678
  conformsTo, eq, gt, gte, isArguments,
45688
- isArray, isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean,
45679
+ isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean,
45689
45680
  isBuffer, isDate, isElement, isEmpty, isEqual,
45690
45681
  isEqualWith, isError, isFinite, isFunction, isInteger,
45691
45682
  isLength, isMap, isMatch, isMatchWith, isNaN: isNaN$1,
45692
- isNative, isNil, isNull, isNumber, isObject,
45693
- isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
45683
+ isNative, isNil, isNull, isNumber, isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
45694
45684
  isString, isSymbol, isTypedArray, isUndefined, isWeakMap,
45695
45685
  isWeakSet, lt, lte, toArray, toFinite,
45696
- toInteger, toLength, toNumber, toPlainObject, toSafeInteger,
45686
+ toLength, toNumber, toPlainObject, toSafeInteger,
45697
45687
  toString
45698
45688
  };
45699
45689
 
@@ -45709,11 +45699,10 @@ var number = {
45709
45699
 
45710
45700
  var object = {
45711
45701
  assign, assignIn, assignInWith, assignWith, at,
45712
- create, defaults, defaultsDeep, entries: toPairs, entriesIn: toPairsIn,
45713
- extend: assignIn, extendWith: assignInWith, findKey, findLastKey, forIn,
45702
+ create, defaults, defaultsDeep, findKey, findLastKey, forIn,
45714
45703
  forInRight, forOwn, forOwnRight, functions, functionsIn,
45715
45704
  get, has, hasIn, invert, invertBy,
45716
- invoke, keys, keysIn, mapKeys, mapValues,
45705
+ invoke, keysIn, mapKeys, mapValues,
45717
45706
  merge, mergeWith, omit, omitBy, pick,
45718
45707
  pickBy, result, set, setWith, toPairs,
45719
45708
  toPairsIn, transform, unset, update, updateWith,
@@ -45721,9 +45710,9 @@ var object = {
45721
45710
  };
45722
45711
 
45723
45712
  var seq = {
45724
- at: wrapperAt, chain, commit: wrapperCommit, lodash, next: wrapperNext,
45725
- plant: wrapperPlant, reverse: wrapperReverse, tap, thru, toIterator: wrapperToIterator,
45726
- toJSON: wrapperValue, value: wrapperValue, valueOf: wrapperValue, wrapperChain
45713
+ at: wrapperAt, chain, commit: wrapperCommit, next: wrapperNext,
45714
+ plant: wrapperPlant, reverse: wrapperReverse, tap, toIterator: wrapperToIterator,
45715
+ value: wrapperValue, wrapperChain
45727
45716
  };
45728
45717
 
45729
45718
  var string = {
@@ -45738,9 +45727,8 @@ var string = {
45738
45727
 
45739
45728
  var util = {
45740
45729
  attempt, bindAll, cond, conforms, constant,
45741
- defaultTo, flow, flowRight, identity, iteratee,
45742
- matches, matchesProperty, method, methodOf, mixin: mixin$1,
45743
- noop: noop$1, nthArg, over, overEvery, overSome,
45730
+ defaultTo, flow, flowRight, iteratee,
45731
+ matches, matchesProperty, method, methodOf, noop: noop$1, nthArg, over, overEvery, overSome,
45744
45732
  property, propertyOf, range, rangeRight, stubArray,
45745
45733
  stubFalse, stubObject, stubString, stubTrue, times,
45746
45734
  toPath, uniqueId