@wavemaker/angular-codegen 11.5.0-next.26249 → 11.5.0-next.26250

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.
@@ -36,7 +36,7 @@
36
36
  "@metrichor/jmespath": "^0.3.1",
37
37
  "@wavemaker.com/nvd3": "1.0.0",
38
38
  "@wavemaker/focus-trap": "^1.0.0",
39
- "@wavemaker/variables": "11.5.0-next.26249",
39
+ "@wavemaker/variables": "11.5.0-next.26250",
40
40
  "@ztree/ztree_v3": "^3.5.48",
41
41
  "angular-imask": "6.3.0",
42
42
  "angular2-websocket": "0.9.7",
@@ -5947,9 +5947,9 @@
5947
5947
  }
5948
5948
  },
5949
5949
  "node_modules/@wavemaker/variables": {
5950
- "version": "11.5.0-next.26249",
5951
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.5.0-next.26249.tgz",
5952
- "integrity": "sha512-B7pnAtzzKem/H3ziB+u3inCXq0raU1+ueroDXxvecrDMH91Rv2UpSMshhzYZ/ObKkezpwn6Vck1fiRS/O6abFQ==",
5950
+ "version": "11.5.0-next.26250",
5951
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.5.0-next.26250.tgz",
5952
+ "integrity": "sha512-u4hINfPn7WIPNA91hZ2FGewppPFF6iQYhMO7dtuUlwTzVFk9duhPQgSnNyBXAW0ngVseptku8lv9jc7xbqI/aA==",
5953
5953
  "dependencies": {
5954
5954
  "@metrichor/jmespath": "^0.3.1",
5955
5955
  "he": "^1.2.0",
@@ -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.26249",
50
+ "@wavemaker/variables": "11.5.0-next.26250",
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.26249"
75
+ "@wavemaker/app-ng-runtime": "11.5.0-next.26250"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -62134,7 +62134,9 @@ const buildTask = (directiveAttr = '') => {
62134
62134
  const role = parentLoginWidget && parentLoginWidget.get('isLogin') ? 'app-login' : '';
62135
62135
  const counter = idGen$d.nextUid();
62136
62136
  const dependsOn = attrs.get('dependson') ? `dependson="${attrs.get('dependson')}"` : '';
62137
- const dependsOnTable = attrs.get('dependson') ? `dependsontable="${attrs.get('dependson')}"` : '';
62137
+ if (dependsOn) {
62138
+ attrs.set('dependsontable', attrs.get('dependson'));
62139
+ }
62138
62140
  const classProp = attrs.get('formlayout') === 'page' ? 'app-device-liveform panel liveform-inline' : '';
62139
62141
  const dialogAttributes = ['title', 'title.bind', 'iconclass', 'iconclass.bind', 'width'];
62140
62142
  attrs.delete('dependson');
@@ -62179,7 +62181,8 @@ const buildTask = (directiveAttr = '') => {
62179
62181
  <div class="form-elements panel-body" >`;
62180
62182
  }
62181
62183
  tmpl = getAttrMarkup(attrs);
62182
- return `<div ${dependsOn}>${liveFormTmpl} ${tmpl} ${dependsOnTable}>
62184
+ const dependsOnTmpl = dependsOn ? `<div ${dependsOn}>` : '';
62185
+ return `${dependsOnTmpl}${liveFormTmpl} ${tmpl}>
62183
62186
  ${buttonTemplate} ${mobileFormContentTmpl}`;
62184
62187
  },
62185
62188
  post: (attrs) => {
@@ -62189,7 +62192,10 @@ const buildTask = (directiveAttr = '') => {
62189
62192
  if (attrs.get('formlayout') === 'page') {
62190
62193
  return `</div></${tagName$V}>`;
62191
62194
  }
62192
- return `</${tagName$V}></div>`;
62195
+ if (attrs.get('dependsontable')) {
62196
+ return `</${tagName$V}></div>`;
62197
+ }
62198
+ return `</${tagName$V}>`;
62193
62199
  },
62194
62200
  provide: (attrs, shared) => {
62195
62201
  const provider = new Map();
@@ -62134,7 +62134,9 @@ const buildTask = (directiveAttr = '') => {
62134
62134
  const role = parentLoginWidget && parentLoginWidget.get('isLogin') ? 'app-login' : '';
62135
62135
  const counter = idGen$d.nextUid();
62136
62136
  const dependsOn = attrs.get('dependson') ? `dependson="${attrs.get('dependson')}"` : '';
62137
- const dependsOnTable = attrs.get('dependson') ? `dependsontable="${attrs.get('dependson')}"` : '';
62137
+ if (dependsOn) {
62138
+ attrs.set('dependsontable', attrs.get('dependson'));
62139
+ }
62138
62140
  const classProp = attrs.get('formlayout') === 'page' ? 'app-device-liveform panel liveform-inline' : '';
62139
62141
  const dialogAttributes = ['title', 'title.bind', 'iconclass', 'iconclass.bind', 'width'];
62140
62142
  attrs.delete('dependson');
@@ -62179,7 +62181,8 @@ const buildTask = (directiveAttr = '') => {
62179
62181
  <div class="form-elements panel-body" >`;
62180
62182
  }
62181
62183
  tmpl = getAttrMarkup(attrs);
62182
- return `<div ${dependsOn}>${liveFormTmpl} ${tmpl} ${dependsOnTable}>
62184
+ const dependsOnTmpl = dependsOn ? `<div ${dependsOn}>` : '';
62185
+ return `${dependsOnTmpl}${liveFormTmpl} ${tmpl}>
62183
62186
  ${buttonTemplate} ${mobileFormContentTmpl}`;
62184
62187
  },
62185
62188
  post: (attrs) => {
@@ -62189,7 +62192,10 @@ const buildTask = (directiveAttr = '') => {
62189
62192
  if (attrs.get('formlayout') === 'page') {
62190
62193
  return `</div></${tagName$V}>`;
62191
62194
  }
62192
- return `</${tagName$V}></div>`;
62195
+ if (attrs.get('dependsontable')) {
62196
+ return `</${tagName$V}></div>`;
62197
+ }
62198
+ return `</${tagName$V}>`;
62193
62199
  },
62194
62200
  provide: (attrs, shared) => {
62195
62201
  const provider = new Map();
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.5.0-next.26249",
3
+ "version": "11.5.0-next.26250",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {