@wavemaker/angular-codegen 11.3.4-rc.5330 → 11.3.4-rc.5332

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,9 +5960,9 @@
5960
5960
  }
5961
5961
  },
5962
5962
  "@wavemaker/variables": {
5963
- "version": "11.3.4-rc.5330",
5964
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.4-rc.5330.tgz",
5965
- "integrity": "sha512-Ekp+i/Snks6Qm/w/pEJXhAKIFLPbMT8vxppZJSpt47Le4OPqMNTm4idv6WxIADYssQIcRaOrxg9XIWqsmGJ31Q==",
5963
+ "version": "11.3.4-rc.5332",
5964
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.4-rc.5332.tgz",
5965
+ "integrity": "sha512-16o+CTjVSIAUb4GvIQEi8Gj1hNU4bd6PU/fUMX258aZsvXHScUfF0RTQkAbmzHU5twORAXHdiqpVEE1HQkKefA==",
5966
5966
  "requires": {
5967
5967
  "@metrichor/jmespath": "^0.3.1",
5968
5968
  "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.3.4-rc.5330",
50
+ "@wavemaker/variables": "11.3.4-rc.5332",
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.4-rc.5330"
74
+ "@wavemaker/app-ng-runtime": "11.3.4-rc.5332"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@ampproject/rollup-plugin-closure-compiler": "0.8.5",
@@ -47229,8 +47229,8 @@ class EventNotifier {
47229
47229
  }
47230
47230
  }
47231
47231
 
47232
- const MINIMUM_MOBILE_WIDTH = 480;
47233
- const MINIMUM_TAB_WIDTH = 768;
47232
+ let MINIMUM_MOBILE_WIDTH = 480;
47233
+ let MINIMUM_TAB_WIDTH = 768;
47234
47234
  class Viewport {
47235
47235
  constructor() {
47236
47236
  this.orientation = {
@@ -47295,6 +47295,8 @@ class Viewport {
47295
47295
  }
47296
47296
  }
47297
47297
  else {
47298
+ MINIMUM_MOBILE_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-xs')) || 480;
47299
+ MINIMUM_TAB_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-sm')) || 768;
47298
47300
  // Tablet specification: min >= 480 max >= 768
47299
47301
  if (minValue >= MINIMUM_MOBILE_WIDTH && maxValue >= MINIMUM_TAB_WIDTH) {
47300
47302
  this.type = 1 /* TABLET */;
@@ -43307,8 +43307,8 @@ class EventNotifier {
43307
43307
  }
43308
43308
  }
43309
43309
 
43310
- const MINIMUM_MOBILE_WIDTH = 480;
43311
- const MINIMUM_TAB_WIDTH = 768;
43310
+ let MINIMUM_MOBILE_WIDTH = 480;
43311
+ let MINIMUM_TAB_WIDTH = 768;
43312
43312
  class Viewport {
43313
43313
  constructor() {
43314
43314
  this.orientation = {
@@ -43373,6 +43373,8 @@ class Viewport {
43373
43373
  }
43374
43374
  }
43375
43375
  else {
43376
+ MINIMUM_MOBILE_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-xs')) || 480;
43377
+ MINIMUM_TAB_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-sm')) || 768;
43376
43378
  // Tablet specification: min >= 480 max >= 768
43377
43379
  if (minValue >= MINIMUM_MOBILE_WIDTH && maxValue >= MINIMUM_TAB_WIDTH) {
43378
43380
  this.type = 1 /* TABLET */;
@@ -43307,8 +43307,8 @@ class EventNotifier {
43307
43307
  }
43308
43308
  }
43309
43309
 
43310
- const MINIMUM_MOBILE_WIDTH = 480;
43311
- const MINIMUM_TAB_WIDTH = 768;
43310
+ let MINIMUM_MOBILE_WIDTH = 480;
43311
+ let MINIMUM_TAB_WIDTH = 768;
43312
43312
  class Viewport {
43313
43313
  constructor() {
43314
43314
  this.orientation = {
@@ -43373,6 +43373,8 @@ class Viewport {
43373
43373
  }
43374
43374
  }
43375
43375
  else {
43376
+ MINIMUM_MOBILE_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-xs')) || 480;
43377
+ MINIMUM_TAB_WIDTH = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--screen-sm')) || 768;
43376
43378
  // Tablet specification: min >= 480 max >= 768
43377
43379
  if (minValue >= MINIMUM_MOBILE_WIDTH && maxValue >= MINIMUM_TAB_WIDTH) {
43378
43380
  this.type = 1 /* TABLET */;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.3.4-rc.5330",
3
+ "version": "11.3.4-rc.5332",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {