@wavemaker/angular-codegen 11.10.0-rc.198 → 11.10.1-rc.200
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/angular-app/dependency-report.html +1 -1
- package/angular-app/npm-shrinkwrap.json +290 -48
- package/angular-app/package-lock.json +290 -48
- package/angular-app/package.json +5 -5
- package/angular-app/src/assets/styles/css/wm-style.css +1 -1
- package/dependencies/expression-parser.cjs.js +14 -18
- package/dependencies/pipe-provider.cjs.js +168 -456
- package/dependencies/transpilation-mobile.cjs.js +51 -192
- package/dependencies/transpilation-web.cjs.js +65 -209
- package/npm-shrinkwrap.json +35 -41
- package/package-lock.json +35 -41
- package/package.json +2 -2
- package/templates/page/page.module.ts.hbs +1 -1
|
@@ -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,
|
|
@@ -45640,10 +45639,10 @@ var zipWith = baseRest(function(arrays) {
|
|
|
45640
45639
|
var array = {
|
|
45641
45640
|
chunk, compact, concat, difference, differenceBy,
|
|
45642
45641
|
differenceWith, drop, dropRight, dropRightWhile, dropWhile,
|
|
45643
|
-
fill, findIndex, findLastIndex,
|
|
45642
|
+
fill, findIndex, findLastIndex, flatten,
|
|
45644
45643
|
flattenDeep, flattenDepth, fromPairs, head, indexOf,
|
|
45645
45644
|
initial, intersection, intersectionBy, intersectionWith, join,
|
|
45646
|
-
|
|
45645
|
+
lastIndexOf, nth, pull, pullAll,
|
|
45647
45646
|
pullAllBy, pullAllWith, pullAt, remove, reverse,
|
|
45648
45647
|
slice, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex,
|
|
45649
45648
|
sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, tail,
|
|
@@ -45654,7 +45653,7 @@ var array = {
|
|
|
45654
45653
|
};
|
|
45655
45654
|
|
|
45656
45655
|
var collection = {
|
|
45657
|
-
countBy,
|
|
45656
|
+
countBy, every, filter,
|
|
45658
45657
|
find, findLast, flatMap, flatMapDeep, flatMapDepth,
|
|
45659
45658
|
forEach, forEachRight, groupBy, includes, invokeMap,
|
|
45660
45659
|
keyBy, map, orderBy, partition, reduce,
|
|
@@ -45669,7 +45668,7 @@ var date = {
|
|
|
45669
45668
|
var func = {
|
|
45670
45669
|
after, ary, before, bind, bindKey,
|
|
45671
45670
|
curry, curryRight, debounce, defer, delay,
|
|
45672
|
-
flip, memoize,
|
|
45671
|
+
flip, memoize, once, overArgs,
|
|
45673
45672
|
partial, partialRight, rearg, rest, spread,
|
|
45674
45673
|
throttle, unary, wrap
|
|
45675
45674
|
};
|
|
@@ -45677,15 +45676,14 @@ var func = {
|
|
|
45677
45676
|
var lang = {
|
|
45678
45677
|
castArray, clone, cloneDeep, cloneDeepWith, cloneWith,
|
|
45679
45678
|
conformsTo, eq, gt, gte, isArguments,
|
|
45680
|
-
|
|
45679
|
+
isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean,
|
|
45681
45680
|
isBuffer, isDate, isElement, isEmpty, isEqual,
|
|
45682
45681
|
isEqualWith, isError, isFinite, isFunction, isInteger,
|
|
45683
45682
|
isLength, isMap, isMatch, isMatchWith, isNaN: isNaN$1,
|
|
45684
|
-
isNative, isNil, isNull, isNumber,
|
|
45685
|
-
isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
|
|
45683
|
+
isNative, isNil, isNull, isNumber, isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
|
|
45686
45684
|
isString, isSymbol, isTypedArray, isUndefined, isWeakMap,
|
|
45687
45685
|
isWeakSet, lt, lte, toArray, toFinite,
|
|
45688
|
-
|
|
45686
|
+
toLength, toNumber, toPlainObject, toSafeInteger,
|
|
45689
45687
|
toString
|
|
45690
45688
|
};
|
|
45691
45689
|
|
|
@@ -45701,11 +45699,10 @@ var number = {
|
|
|
45701
45699
|
|
|
45702
45700
|
var object = {
|
|
45703
45701
|
assign, assignIn, assignInWith, assignWith, at,
|
|
45704
|
-
create, defaults, defaultsDeep,
|
|
45705
|
-
extend: assignIn, extendWith: assignInWith, findKey, findLastKey, forIn,
|
|
45702
|
+
create, defaults, defaultsDeep, findKey, findLastKey, forIn,
|
|
45706
45703
|
forInRight, forOwn, forOwnRight, functions, functionsIn,
|
|
45707
45704
|
get, has, hasIn, invert, invertBy,
|
|
45708
|
-
invoke,
|
|
45705
|
+
invoke, keysIn, mapKeys, mapValues,
|
|
45709
45706
|
merge, mergeWith, omit, omitBy, pick,
|
|
45710
45707
|
pickBy, result, set, setWith, toPairs,
|
|
45711
45708
|
toPairsIn, transform, unset, update, updateWith,
|
|
@@ -45713,9 +45710,9 @@ var object = {
|
|
|
45713
45710
|
};
|
|
45714
45711
|
|
|
45715
45712
|
var seq = {
|
|
45716
|
-
at: wrapperAt, chain, commit: wrapperCommit,
|
|
45717
|
-
plant: wrapperPlant, reverse: wrapperReverse, tap,
|
|
45718
|
-
|
|
45713
|
+
at: wrapperAt, chain, commit: wrapperCommit, next: wrapperNext,
|
|
45714
|
+
plant: wrapperPlant, reverse: wrapperReverse, tap, toIterator: wrapperToIterator,
|
|
45715
|
+
value: wrapperValue, wrapperChain
|
|
45719
45716
|
};
|
|
45720
45717
|
|
|
45721
45718
|
var string = {
|
|
@@ -45730,9 +45727,8 @@ var string = {
|
|
|
45730
45727
|
|
|
45731
45728
|
var util = {
|
|
45732
45729
|
attempt, bindAll, cond, conforms, constant,
|
|
45733
|
-
defaultTo, flow, flowRight,
|
|
45734
|
-
matches, matchesProperty, method, methodOf,
|
|
45735
|
-
noop: noop$1, nthArg, over, overEvery, overSome,
|
|
45730
|
+
defaultTo, flow, flowRight, iteratee,
|
|
45731
|
+
matches, matchesProperty, method, methodOf, noop: noop$1, nthArg, over, overEvery, overSome,
|
|
45736
45732
|
property, propertyOf, range, rangeRight, stubArray,
|
|
45737
45733
|
stubFalse, stubObject, stubString, stubTrue, times,
|
|
45738
45734
|
toPath, uniqueId
|