@wavemaker/angular-codegen 11.3.4-rc.5329 → 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.
- angular-codegen/angular-app/package-lock.json +3 -3
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/pipe-provider.cjs.js +4 -2
- angular-codegen/dependencies/transpilation-mobile.cjs.js +4 -2
- angular-codegen/dependencies/transpilation-web.cjs.js +4 -2
- angular-codegen/package.json +1 -1
@@ -47229,8 +47229,8 @@ class EventNotifier {
|
|
47229
47229
|
}
|
47230
47230
|
}
|
47231
47231
|
|
47232
|
-
|
47233
|
-
|
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
|
-
|
43311
|
-
|
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
|
-
|
43311
|
-
|
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 */;
|