@wavemaker/angular-codegen 11.5.0-next.26226 → 11.5.0-next.26228
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.26228",
|
|
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.26228"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
|
@@ -95394,28 +95394,35 @@ const findParent$1 = (lView, viewParentApp) => {
|
|
|
95394
95394
|
return parent ? parent : viewParentApp;
|
|
95395
95395
|
};
|
|
95396
95396
|
const findViewParent$1 = (lView) => {
|
|
95397
|
-
|
|
95397
|
+
return lView[16][8];
|
|
95398
|
+
/*if(lView[3] === null) {
|
|
95398
95399
|
return lView[8];
|
|
95399
95400
|
}
|
|
95400
95401
|
let parentlView = lView[3];
|
|
95401
|
-
if
|
|
95402
|
-
return findViewParent
|
|
95402
|
+
if(typeof lView[1] === "boolean") {
|
|
95403
|
+
return findViewParent(parentlView);
|
|
95403
95404
|
}
|
|
95404
95405
|
let componentType = lView[1]["type"];
|
|
95405
|
-
if
|
|
95406
|
+
if(componentType === 0 || componentType === 1) {
|
|
95406
95407
|
let p = lView[8];
|
|
95407
95408
|
// ts-ignore
|
|
95408
|
-
if
|
|
95409
|
-
return findViewParent
|
|
95410
|
-
}
|
|
95411
|
-
else {
|
|
95409
|
+
if(p.hasOwnProperty("isDialogComponent") || p.hasOwnProperty("isContainerDirective")) {
|
|
95410
|
+
return findViewParent(parentlView);
|
|
95411
|
+
} else {
|
|
95412
95412
|
return p;
|
|
95413
95413
|
}
|
|
95414
|
-
}
|
|
95415
|
-
|
|
95416
|
-
|
|
95417
|
-
}
|
|
95414
|
+
} else {
|
|
95415
|
+
return findViewParent(parentlView);
|
|
95416
|
+
}*/
|
|
95418
95417
|
};
|
|
95418
|
+
/*export const getParent = (parent: any) => {
|
|
95419
|
+
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
95420
|
+
return parent
|
|
95421
|
+
} else{
|
|
95422
|
+
return parent.viewParent ? getParent(parent.viewParent) : parent;
|
|
95423
|
+
}
|
|
95424
|
+
|
|
95425
|
+
}*/
|
|
95419
95426
|
|
|
95420
95427
|
var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
95421
95428
|
__proto__: null,
|
|
@@ -122195,28 +122202,35 @@ const findParent = (lView, viewParentApp) => {
|
|
|
122195
122202
|
return parent ? parent : viewParentApp;
|
|
122196
122203
|
};
|
|
122197
122204
|
const findViewParent = (lView) => {
|
|
122198
|
-
|
|
122205
|
+
return lView[16][8];
|
|
122206
|
+
/*if(lView[3] === null) {
|
|
122199
122207
|
return lView[8];
|
|
122200
122208
|
}
|
|
122201
122209
|
let parentlView = lView[3];
|
|
122202
|
-
if
|
|
122210
|
+
if(typeof lView[1] === "boolean") {
|
|
122203
122211
|
return findViewParent(parentlView);
|
|
122204
122212
|
}
|
|
122205
122213
|
let componentType = lView[1]["type"];
|
|
122206
|
-
if
|
|
122214
|
+
if(componentType === 0 || componentType === 1) {
|
|
122207
122215
|
let p = lView[8];
|
|
122208
122216
|
// ts-ignore
|
|
122209
|
-
if
|
|
122217
|
+
if(p.hasOwnProperty("isDialogComponent") || p.hasOwnProperty("isContainerDirective")) {
|
|
122210
122218
|
return findViewParent(parentlView);
|
|
122211
|
-
}
|
|
122212
|
-
else {
|
|
122219
|
+
} else {
|
|
122213
122220
|
return p;
|
|
122214
122221
|
}
|
|
122215
|
-
}
|
|
122216
|
-
else {
|
|
122222
|
+
} else {
|
|
122217
122223
|
return findViewParent(parentlView);
|
|
122218
|
-
}
|
|
122224
|
+
}*/
|
|
122219
122225
|
};
|
|
122226
|
+
/*export const getParent = (parent: any) => {
|
|
122227
|
+
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
122228
|
+
return parent
|
|
122229
|
+
} else{
|
|
122230
|
+
return parent.viewParent ? getParent(parent.viewParent) : parent;
|
|
122231
|
+
}
|
|
122232
|
+
|
|
122233
|
+
}*/
|
|
122220
122234
|
|
|
122221
122235
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
122222
122236
|
__proto__: null,
|
|
@@ -59020,28 +59020,35 @@ const findParent = (lView, viewParentApp) => {
|
|
|
59020
59020
|
return parent ? parent : viewParentApp;
|
|
59021
59021
|
};
|
|
59022
59022
|
const findViewParent = (lView) => {
|
|
59023
|
-
|
|
59023
|
+
return lView[16][8];
|
|
59024
|
+
/*if(lView[3] === null) {
|
|
59024
59025
|
return lView[8];
|
|
59025
59026
|
}
|
|
59026
59027
|
let parentlView = lView[3];
|
|
59027
|
-
if
|
|
59028
|
+
if(typeof lView[1] === "boolean") {
|
|
59028
59029
|
return findViewParent(parentlView);
|
|
59029
59030
|
}
|
|
59030
59031
|
let componentType = lView[1]["type"];
|
|
59031
|
-
if
|
|
59032
|
+
if(componentType === 0 || componentType === 1) {
|
|
59032
59033
|
let p = lView[8];
|
|
59033
59034
|
// ts-ignore
|
|
59034
|
-
if
|
|
59035
|
+
if(p.hasOwnProperty("isDialogComponent") || p.hasOwnProperty("isContainerDirective")) {
|
|
59035
59036
|
return findViewParent(parentlView);
|
|
59036
|
-
}
|
|
59037
|
-
else {
|
|
59037
|
+
} else {
|
|
59038
59038
|
return p;
|
|
59039
59039
|
}
|
|
59040
|
-
}
|
|
59041
|
-
else {
|
|
59040
|
+
} else {
|
|
59042
59041
|
return findViewParent(parentlView);
|
|
59043
|
-
}
|
|
59042
|
+
}*/
|
|
59044
59043
|
};
|
|
59044
|
+
/*export const getParent = (parent: any) => {
|
|
59045
|
+
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
59046
|
+
return parent
|
|
59047
|
+
} else{
|
|
59048
|
+
return parent.viewParent ? getParent(parent.viewParent) : parent;
|
|
59049
|
+
}
|
|
59050
|
+
|
|
59051
|
+
}*/
|
|
59045
59052
|
|
|
59046
59053
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
59047
59054
|
__proto__: null,
|
|
@@ -59020,28 +59020,35 @@ const findParent = (lView, viewParentApp) => {
|
|
|
59020
59020
|
return parent ? parent : viewParentApp;
|
|
59021
59021
|
};
|
|
59022
59022
|
const findViewParent = (lView) => {
|
|
59023
|
-
|
|
59023
|
+
return lView[16][8];
|
|
59024
|
+
/*if(lView[3] === null) {
|
|
59024
59025
|
return lView[8];
|
|
59025
59026
|
}
|
|
59026
59027
|
let parentlView = lView[3];
|
|
59027
|
-
if
|
|
59028
|
+
if(typeof lView[1] === "boolean") {
|
|
59028
59029
|
return findViewParent(parentlView);
|
|
59029
59030
|
}
|
|
59030
59031
|
let componentType = lView[1]["type"];
|
|
59031
|
-
if
|
|
59032
|
+
if(componentType === 0 || componentType === 1) {
|
|
59032
59033
|
let p = lView[8];
|
|
59033
59034
|
// ts-ignore
|
|
59034
|
-
if
|
|
59035
|
+
if(p.hasOwnProperty("isDialogComponent") || p.hasOwnProperty("isContainerDirective")) {
|
|
59035
59036
|
return findViewParent(parentlView);
|
|
59036
|
-
}
|
|
59037
|
-
else {
|
|
59037
|
+
} else {
|
|
59038
59038
|
return p;
|
|
59039
59039
|
}
|
|
59040
|
-
}
|
|
59041
|
-
else {
|
|
59040
|
+
} else {
|
|
59042
59041
|
return findViewParent(parentlView);
|
|
59043
|
-
}
|
|
59042
|
+
}*/
|
|
59044
59043
|
};
|
|
59044
|
+
/*export const getParent = (parent: any) => {
|
|
59045
|
+
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
59046
|
+
return parent
|
|
59047
|
+
} else{
|
|
59048
|
+
return parent.viewParent ? getParent(parent.viewParent) : parent;
|
|
59049
|
+
}
|
|
59050
|
+
|
|
59051
|
+
}*/
|
|
59045
59052
|
|
|
59046
59053
|
var Utils = /*#__PURE__*/Object.freeze({
|
|
59047
59054
|
__proto__: null,
|