@wavemaker/angular-codegen 11.3.6-rc.5334 → 11.3.6-rc.5345

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.
@@ -5960,14 +5960,24 @@
5960
5960
  }
5961
5961
  },
5962
5962
  "@wavemaker/variables": {
5963
- "version": "11.3.6-rc.5334",
5964
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.6-rc.5334.tgz",
5965
- "integrity": "sha512-JI5Ma4Lf7xwoIMOaCgfT6ZlbFkAmnKVfFShUt6FfVTT6LfmaHT99kSnXOH3AJq8cV74dQ35g0wmOE1I8sr+k5g==",
5963
+ "version": "11.3.6-rc.5345",
5964
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.6-rc.5345.tgz",
5965
+ "integrity": "sha512-V5setqDD3uTbGiH0qSuVph4fJTk536463UxQcHw5LK7XPUzov/YfiTjLupsqjjARQZs/bCuf/WAxxqrqJcyA+A==",
5966
5966
  "requires": {
5967
5967
  "@metrichor/jmespath": "^0.3.1",
5968
5968
  "he": "^1.2.0",
5969
5969
  "lodash": "^4.17.21",
5970
- "x2js": "3.2.6"
5970
+ "x2js": "^3.4.3"
5971
+ },
5972
+ "dependencies": {
5973
+ "x2js": {
5974
+ "version": "3.4.4",
5975
+ "resolved": "https://registry.npmjs.org/x2js/-/x2js-3.4.4.tgz",
5976
+ "integrity": "sha512-yG/ThaBCgnsa3aoMPAe7QwDpcyU4D70hjXC4Y1lZSfD/Tgd0MpE19FnZZRAjekryw0c8cffpOt9zsPEiqktO6Q==",
5977
+ "requires": {
5978
+ "@xmldom/xmldom": "^0.8.3"
5979
+ }
5980
+ }
5971
5981
  }
5972
5982
  },
5973
5983
  "@webassemblyjs/ast": {
@@ -6170,6 +6180,11 @@
6170
6180
  "@xtuc/long": "4.2.2"
6171
6181
  }
6172
6182
  },
6183
+ "@xmldom/xmldom": {
6184
+ "version": "0.8.10",
6185
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz",
6186
+ "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw=="
6187
+ },
6173
6188
  "@xtuc/ieee754": {
6174
6189
  "version": "1.2.0",
6175
6190
  "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
@@ -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.3.6-rc.5334",
50
+ "@wavemaker/variables": "11.3.6-rc.5345",
51
51
  "angular-imask": "6.0.4",
52
52
  "angular2-websocket": "0.9.7",
53
53
  "core-js": "2.5.4",
@@ -71,7 +71,7 @@
71
71
  "tslib": "^2.0.0",
72
72
  "x2js": "3.2.6",
73
73
  "zone.js": "~0.11.4",
74
- "@wavemaker/app-ng-runtime": "11.3.6-rc.5334"
74
+ "@wavemaker/app-ng-runtime": "11.3.6-rc.5345"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@ampproject/rollup-plugin-closure-compiler": "0.8.5",
@@ -46880,7 +46880,7 @@ register('wm-popover', () => {
46880
46880
  }
46881
46881
  let markup = `<${tagName$q} wmPopover ${getAttrMarkup(attrs)}>`;
46882
46882
  const contextAttrs = table ? `let-row="row"` : ``;
46883
- markup += `<ng-template ${contextAttrs}><div tabindex="0" class="popover-start sr-only" aria-label="">popover content start</div>`;
46883
+ markup += `<ng-template ${contextAttrs}><button class="popover-start"></button>`;
46884
46884
  // todo keyboard navigation - tab
46885
46885
  if (popoverTemplate) {
46886
46886
  markup += `${popoverTemplate ? popoverTemplate : ''}`;
@@ -46892,7 +46892,7 @@ register('wm-popover', () => {
46892
46892
  if (shared.get('hasPopoverContent')) {
46893
46893
  markup += `</div>`;
46894
46894
  }
46895
- return `${markup}<div tabindex="0" class="popover-end sr-only" aria-label="">popover content ended</div></ng-template></${tagName$q}>`;
46895
+ return `${markup}<button class="popover-end"></button></ng-template></${tagName$q}>`;
46896
46896
  }
46897
46897
  };
46898
46898
  });
@@ -46880,7 +46880,7 @@ register('wm-popover', () => {
46880
46880
  }
46881
46881
  let markup = `<${tagName$q} wmPopover ${getAttrMarkup(attrs)}>`;
46882
46882
  const contextAttrs = table ? `let-row="row"` : ``;
46883
- markup += `<ng-template ${contextAttrs}><div tabindex="0" class="popover-start sr-only" aria-label="">popover content start</div>`;
46883
+ markup += `<ng-template ${contextAttrs}><button class="popover-start"></button>`;
46884
46884
  // todo keyboard navigation - tab
46885
46885
  if (popoverTemplate) {
46886
46886
  markup += `${popoverTemplate ? popoverTemplate : ''}`;
@@ -46892,7 +46892,7 @@ register('wm-popover', () => {
46892
46892
  if (shared.get('hasPopoverContent')) {
46893
46893
  markup += `</div>`;
46894
46894
  }
46895
- return `${markup}<div tabindex="0" class="popover-end sr-only" aria-label="">popover content ended</div></ng-template></${tagName$q}>`;
46895
+ return `${markup}<button class="popover-end"></button></ng-template></${tagName$q}>`;
46896
46896
  }
46897
46897
  };
46898
46898
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.3.6-rc.5334",
3
+ "version": "11.3.6-rc.5345",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {