@wavemaker/angular-codegen 11.8.0-next.44258 → 11.8.0-next.44502
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.
- angular-codegen/angular-app/package-lock.json +47 -262
- angular-codegen/angular-app/package.json +5 -6
- angular-codegen/dependencies/transpilation-mobile.cjs.js +18 -1
- angular-codegen/dependencies/transpilation-web.cjs.js +18 -1
- angular-codegen/package-lock.json +51 -256
- angular-codegen/package.json +1 -2
|
@@ -6,17 +6,16 @@
|
|
|
6
6
|
"start": "./node_modules/.bin/ng serve",
|
|
7
7
|
"build": "node build-scripts/build.js",
|
|
8
8
|
"post-build": "node build-scripts/post-build.js",
|
|
9
|
-
"test": "jest --no-cache
|
|
9
|
+
"test": "jest --no-cache",
|
|
10
10
|
"test:watch": "jest --watch",
|
|
11
|
-
"test:coverage": "jest --coverage
|
|
12
|
-
"test-prod": "jest --no-cache --no-color --
|
|
11
|
+
"test:coverage": "jest --coverage",
|
|
12
|
+
"test-prod": "jest --no-cache --no-color --ci --silent 2>&1 | sed 's/\\x1b\\[[0-9;]*m//g' > karma-test-report.txt",
|
|
13
13
|
"lint": "./node_modules/.bin/ng lint",
|
|
14
14
|
"e2e": "./node_modules/.bin/ng e2e",
|
|
15
15
|
"optimizecss": "gulp --gulpfile build-scripts/optimize-css.gulpfile.js",
|
|
16
16
|
"owasp": "owasp-dependency-check --project \"wavemaker-ng-runtime\" -f \"ALL\""
|
|
17
17
|
},
|
|
18
18
|
"private": true,
|
|
19
|
-
"bundledDependencies": true,
|
|
20
19
|
"dependencies": {
|
|
21
20
|
"@angular/animations": "16.2.12",
|
|
22
21
|
"@angular/common": "16.2.12",
|
|
@@ -46,7 +45,7 @@
|
|
|
46
45
|
"@metrichor/jmespath": "0.3.1",
|
|
47
46
|
"@wavemaker/focus-trap": "1.0.0",
|
|
48
47
|
"@wavemaker/nvd3": "1.8.11",
|
|
49
|
-
"@wavemaker/variables": "11.8.0-next.
|
|
48
|
+
"@wavemaker/variables": "11.8.0-next.44502",
|
|
50
49
|
"@ztree/ztree_v3": "3.5.48",
|
|
51
50
|
"angular-imask": "^7.6.1",
|
|
52
51
|
"angular2-websocket": "0.9.7",
|
|
@@ -72,7 +71,7 @@
|
|
|
72
71
|
"tslib": "2.4.1",
|
|
73
72
|
"x2js": "3.4.4",
|
|
74
73
|
"zone.js": "0.13.3",
|
|
75
|
-
"@wavemaker/app-ng-runtime": "11.8.0-next.
|
|
74
|
+
"@wavemaker/app-ng-runtime": "11.8.0-next.44502"
|
|
76
75
|
},
|
|
77
76
|
"devDependencies": {
|
|
78
77
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
|
@@ -69455,7 +69455,24 @@ var breadcrumb_build$1 = /*#__PURE__*/Object.freeze({
|
|
|
69455
69455
|
const tagName$u = 'div';
|
|
69456
69456
|
register('wm-menu', () => {
|
|
69457
69457
|
return {
|
|
69458
|
-
pre: attrs =>
|
|
69458
|
+
pre: attrs => {
|
|
69459
|
+
const menuWidth = attrs.get("width");
|
|
69460
|
+
let styleBinding = '';
|
|
69461
|
+
if (menuWidth) {
|
|
69462
|
+
const units = ['%', 'px'];
|
|
69463
|
+
const hasUnit = units.some(unit => menuWidth.includes(unit));
|
|
69464
|
+
if (hasUnit) {
|
|
69465
|
+
styleBinding = `[ngStyle]="{'width': '${menuWidth}'}"`;
|
|
69466
|
+
}
|
|
69467
|
+
else {
|
|
69468
|
+
styleBinding = `[ngStyle]="{'width': '${menuWidth}px'}"`;
|
|
69469
|
+
}
|
|
69470
|
+
return `<${tagName$u} wmMenu dropdown ${getAttrMarkup(attrs)} ${styleBinding}>`;
|
|
69471
|
+
}
|
|
69472
|
+
else {
|
|
69473
|
+
return `<${tagName$u} wmMenu dropdown ${getAttrMarkup(attrs)}>`;
|
|
69474
|
+
}
|
|
69475
|
+
},
|
|
69459
69476
|
post: () => `</${tagName$u}>`
|
|
69460
69477
|
};
|
|
69461
69478
|
});
|
|
@@ -69455,7 +69455,24 @@ var breadcrumb_build$1 = /*#__PURE__*/Object.freeze({
|
|
|
69455
69455
|
const tagName$u = 'div';
|
|
69456
69456
|
register('wm-menu', () => {
|
|
69457
69457
|
return {
|
|
69458
|
-
pre: attrs =>
|
|
69458
|
+
pre: attrs => {
|
|
69459
|
+
const menuWidth = attrs.get("width");
|
|
69460
|
+
let styleBinding = '';
|
|
69461
|
+
if (menuWidth) {
|
|
69462
|
+
const units = ['%', 'px'];
|
|
69463
|
+
const hasUnit = units.some(unit => menuWidth.includes(unit));
|
|
69464
|
+
if (hasUnit) {
|
|
69465
|
+
styleBinding = `[ngStyle]="{'width': '${menuWidth}'}"`;
|
|
69466
|
+
}
|
|
69467
|
+
else {
|
|
69468
|
+
styleBinding = `[ngStyle]="{'width': '${menuWidth}px'}"`;
|
|
69469
|
+
}
|
|
69470
|
+
return `<${tagName$u} wmMenu dropdown ${getAttrMarkup(attrs)} ${styleBinding}>`;
|
|
69471
|
+
}
|
|
69472
|
+
else {
|
|
69473
|
+
return `<${tagName$u} wmMenu dropdown ${getAttrMarkup(attrs)}>`;
|
|
69474
|
+
}
|
|
69475
|
+
},
|
|
69459
69476
|
post: () => `</${tagName$u}>`
|
|
69460
69477
|
};
|
|
69461
69478
|
});
|