@wavemaker/angular-codegen 11.5.0-next.24740 → 11.5.0-next.24741
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.
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@metrichor/jmespath": "^0.3.1",
|
|
48
48
|
"@wavemaker.com/nvd3": "1.0.0",
|
|
49
49
|
"@wavemaker/focus-trap": "^1.0.0",
|
|
50
|
-
"@wavemaker/variables": "11.5.0-next.
|
|
50
|
+
"@wavemaker/variables": "11.5.0-next.24741",
|
|
51
51
|
"@ztree/ztree_v3": "^3.5.48",
|
|
52
52
|
"angular-imask": "6.3.0",
|
|
53
53
|
"angular2-websocket": "0.9.7",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"tslib": "2.4.1",
|
|
73
73
|
"x2js": "^3.4.4",
|
|
74
74
|
"zone.js": "~0.11.4",
|
|
75
|
-
"@wavemaker/app-ng-runtime": "11.5.0-next.
|
|
75
|
+
"@wavemaker/app-ng-runtime": "11.5.0-next.24741"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
|
@@ -95389,6 +95389,33 @@ const setListClass$1 = (scope) => {
|
|
|
95389
95389
|
scope.itemsPerRowClass = 'col-xs-12';
|
|
95390
95390
|
}
|
|
95391
95391
|
};
|
|
95392
|
+
const findParent$1 = (lView, viewParentApp) => {
|
|
95393
|
+
let parent = findViewParent$1(lView);
|
|
95394
|
+
return parent ? parent : viewParentApp;
|
|
95395
|
+
};
|
|
95396
|
+
const findViewParent$1 = (lView) => {
|
|
95397
|
+
if (lView[3] === null) {
|
|
95398
|
+
return lView[8];
|
|
95399
|
+
}
|
|
95400
|
+
let parentlView = lView[3];
|
|
95401
|
+
if (typeof lView[1] === "boolean") {
|
|
95402
|
+
return findViewParent$1(parentlView);
|
|
95403
|
+
}
|
|
95404
|
+
let componentType = lView[1]["type"];
|
|
95405
|
+
if (componentType === 0 || componentType === 1) {
|
|
95406
|
+
let p = lView[8];
|
|
95407
|
+
// ts-ignore
|
|
95408
|
+
if (p.hasOwnProperty("isDialogComponent")) {
|
|
95409
|
+
return findViewParent$1(parentlView);
|
|
95410
|
+
}
|
|
95411
|
+
else {
|
|
95412
|
+
return p;
|
|
95413
|
+
}
|
|
95414
|
+
}
|
|
95415
|
+
else {
|
|
95416
|
+
return findViewParent$1(parentlView);
|
|
95417
|
+
}
|
|
95418
|
+
};
|
|
95392
95419
|
|
|
95393
95420
|
var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
95394
95421
|
__proto__: null,
|
|
@@ -95413,8 +95440,10 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
95413
95440
|
extractCurrentItemExpr: extractCurrentItemExpr$1,
|
|
95414
95441
|
extractType: extractType$1,
|
|
95415
95442
|
fetchContent: fetchContent$1,
|
|
95443
|
+
findParent: findParent$1,
|
|
95416
95444
|
findRootContainer: findRootContainer$1,
|
|
95417
95445
|
findValueOf: findValueOf$1,
|
|
95446
|
+
findViewParent: findViewParent$1,
|
|
95418
95447
|
generateGUId: generateGUId$1,
|
|
95419
95448
|
getAbortableDefer: getAbortableDefer$1,
|
|
95420
95449
|
getAndroidVersion: getAndroidVersion$1,
|
|
@@ -122161,6 +122190,33 @@ const setListClass = (scope) => {
|
|
|
122161
122190
|
scope.itemsPerRowClass = 'col-xs-12';
|
|
122162
122191
|
}
|
|
122163
122192
|
};
|
|
122193
|
+
const findParent = (lView, viewParentApp) => {
|
|
122194
|
+
let parent = findViewParent(lView);
|
|
122195
|
+
return parent ? parent : viewParentApp;
|
|
122196
|
+
};
|
|
122197
|
+
const findViewParent = (lView) => {
|
|
122198
|
+
if (lView[3] === null) {
|
|
122199
|
+
return lView[8];
|
|
122200
|
+
}
|
|
122201
|
+
let parentlView = lView[3];
|
|
122202
|
+
if (typeof lView[1] === "boolean") {
|
|
122203
|
+
return findViewParent(parentlView);
|
|
122204
|
+
}
|
|
122205
|
+
let componentType = lView[1]["type"];
|
|
122206
|
+
if (componentType === 0 || componentType === 1) {
|
|
122207
|
+
let p = lView[8];
|
|
122208
|
+
// ts-ignore
|
|
122209
|
+
if (p.hasOwnProperty("isDialogComponent")) {
|
|
122210
|
+
return findViewParent(parentlView);
|
|
122211
|
+
}
|
|
122212
|
+
else {
|
|
122213
|
+
return p;
|
|
122214
|
+
}
|
|
122215
|
+
}
|
|
122216
|
+
else {
|
|
122217
|
+
return findViewParent(parentlView);
|
|
122218
|
+
}
|
|
122219
|
+
};
|
|
122164
122220
|
|
|
122165
122221
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
122166
122222
|
__proto__: null,
|
|
@@ -122185,8 +122241,10 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
122185
122241
|
extractCurrentItemExpr: extractCurrentItemExpr,
|
|
122186
122242
|
extractType: extractType,
|
|
122187
122243
|
fetchContent: fetchContent,
|
|
122244
|
+
findParent: findParent,
|
|
122188
122245
|
findRootContainer: findRootContainer,
|
|
122189
122246
|
findValueOf: findValueOf,
|
|
122247
|
+
findViewParent: findViewParent,
|
|
122190
122248
|
generateGUId: generateGUId,
|
|
122191
122249
|
getAbortableDefer: getAbortableDefer,
|
|
122192
122250
|
getAndroidVersion: getAndroidVersion,
|
|
@@ -59015,6 +59015,33 @@ const setListClass = (scope) => {
|
|
|
59015
59015
|
scope.itemsPerRowClass = 'col-xs-12';
|
|
59016
59016
|
}
|
|
59017
59017
|
};
|
|
59018
|
+
const findParent = (lView, viewParentApp) => {
|
|
59019
|
+
let parent = findViewParent(lView);
|
|
59020
|
+
return parent ? parent : viewParentApp;
|
|
59021
|
+
};
|
|
59022
|
+
const findViewParent = (lView) => {
|
|
59023
|
+
if (lView[3] === null) {
|
|
59024
|
+
return lView[8];
|
|
59025
|
+
}
|
|
59026
|
+
let parentlView = lView[3];
|
|
59027
|
+
if (typeof lView[1] === "boolean") {
|
|
59028
|
+
return findViewParent(parentlView);
|
|
59029
|
+
}
|
|
59030
|
+
let componentType = lView[1]["type"];
|
|
59031
|
+
if (componentType === 0 || componentType === 1) {
|
|
59032
|
+
let p = lView[8];
|
|
59033
|
+
// ts-ignore
|
|
59034
|
+
if (p.hasOwnProperty("isDialogComponent")) {
|
|
59035
|
+
return findViewParent(parentlView);
|
|
59036
|
+
}
|
|
59037
|
+
else {
|
|
59038
|
+
return p;
|
|
59039
|
+
}
|
|
59040
|
+
}
|
|
59041
|
+
else {
|
|
59042
|
+
return findViewParent(parentlView);
|
|
59043
|
+
}
|
|
59044
|
+
};
|
|
59018
59045
|
|
|
59019
59046
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
59020
59047
|
__proto__: null,
|
|
@@ -59039,8 +59066,10 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
59039
59066
|
extractCurrentItemExpr: extractCurrentItemExpr,
|
|
59040
59067
|
extractType: extractType,
|
|
59041
59068
|
fetchContent: fetchContent,
|
|
59069
|
+
findParent: findParent,
|
|
59042
59070
|
findRootContainer: findRootContainer,
|
|
59043
59071
|
findValueOf: findValueOf,
|
|
59072
|
+
findViewParent: findViewParent,
|
|
59044
59073
|
generateGUId: generateGUId,
|
|
59045
59074
|
getAbortableDefer: getAbortableDefer,
|
|
59046
59075
|
getAndroidVersion: getAndroidVersion,
|
|
@@ -59015,6 +59015,33 @@ const setListClass = (scope) => {
|
|
|
59015
59015
|
scope.itemsPerRowClass = 'col-xs-12';
|
|
59016
59016
|
}
|
|
59017
59017
|
};
|
|
59018
|
+
const findParent = (lView, viewParentApp) => {
|
|
59019
|
+
let parent = findViewParent(lView);
|
|
59020
|
+
return parent ? parent : viewParentApp;
|
|
59021
|
+
};
|
|
59022
|
+
const findViewParent = (lView) => {
|
|
59023
|
+
if (lView[3] === null) {
|
|
59024
|
+
return lView[8];
|
|
59025
|
+
}
|
|
59026
|
+
let parentlView = lView[3];
|
|
59027
|
+
if (typeof lView[1] === "boolean") {
|
|
59028
|
+
return findViewParent(parentlView);
|
|
59029
|
+
}
|
|
59030
|
+
let componentType = lView[1]["type"];
|
|
59031
|
+
if (componentType === 0 || componentType === 1) {
|
|
59032
|
+
let p = lView[8];
|
|
59033
|
+
// ts-ignore
|
|
59034
|
+
if (p.hasOwnProperty("isDialogComponent")) {
|
|
59035
|
+
return findViewParent(parentlView);
|
|
59036
|
+
}
|
|
59037
|
+
else {
|
|
59038
|
+
return p;
|
|
59039
|
+
}
|
|
59040
|
+
}
|
|
59041
|
+
else {
|
|
59042
|
+
return findViewParent(parentlView);
|
|
59043
|
+
}
|
|
59044
|
+
};
|
|
59018
59045
|
|
|
59019
59046
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
59020
59047
|
__proto__: null,
|
|
@@ -59039,8 +59066,10 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
59039
59066
|
extractCurrentItemExpr: extractCurrentItemExpr,
|
|
59040
59067
|
extractType: extractType,
|
|
59041
59068
|
fetchContent: fetchContent,
|
|
59069
|
+
findParent: findParent,
|
|
59042
59070
|
findRootContainer: findRootContainer,
|
|
59043
59071
|
findValueOf: findValueOf,
|
|
59072
|
+
findViewParent: findViewParent,
|
|
59044
59073
|
generateGUId: generateGUId,
|
|
59045
59074
|
getAbortableDefer: getAbortableDefer,
|
|
59046
59075
|
getAndroidVersion: getAndroidVersion,
|