@wavemaker/angular-codegen 11.3.4-rc.5300 → 11.3.4-rc.5309
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/dependencies/pipe-provider.cjs.js +10 -2
- angular-codegen/dependencies/transpilation-mobile.cjs.js +10 -2
- angular-codegen/dependencies/transpilation-web.cjs.js +10 -2
- angular-codegen/package.json +1 -1
@@ -5960,9 +5960,9 @@
|
|
5960
5960
|
}
|
5961
5961
|
},
|
5962
5962
|
"@wavemaker/variables": {
|
5963
|
-
"version": "11.3.4-rc.
|
5964
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.4-rc.
|
5965
|
-
"integrity": "sha512-
|
5963
|
+
"version": "11.3.4-rc.5309",
|
5964
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.4-rc.5309.tgz",
|
5965
|
+
"integrity": "sha512-LeMoO/2QfbEe3WijCKUOZCFz5JL4ACqqwhcvlZ19yL+QSeJcI0udMXIE8EuhvUUol3aO+IjCdnyQUt+2LcWXsw==",
|
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.
|
50
|
+
"@wavemaker/variables": "11.3.4-rc.5309",
|
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.
|
74
|
+
"@wavemaker/app-ng-runtime": "11.3.4-rc.5309"
|
75
75
|
},
|
76
76
|
"devDependencies": {
|
77
77
|
"@ampproject/rollup-plugin-closure-compiler": "0.8.5",
|
@@ -45676,8 +45676,16 @@ const isIpad = () => {
|
|
45676
45676
|
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
45677
45677
|
};
|
45678
45678
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
45679
|
-
const isLargeTabletLandscape = () =>
|
45680
|
-
const
|
45679
|
+
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
45680
|
+
const width = landScapeWidth || '1366px';
|
45681
|
+
const height = landScapeHeight || '1024px';
|
45682
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
45683
|
+
};
|
45684
|
+
const isLargeTabletPortrait = (landScapeWidth, landScapeHeight) => {
|
45685
|
+
const height = landScapeWidth || '1366px';
|
45686
|
+
const width = landScapeHeight || '1024px';
|
45687
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
45688
|
+
};
|
45681
45689
|
const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
|
45682
45690
|
const isTablet = () => {
|
45683
45691
|
const scope = document.querySelector('.app-page').widget;
|
@@ -41754,8 +41754,16 @@ const isIpad = () => {
|
|
41754
41754
|
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
41755
41755
|
};
|
41756
41756
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
41757
|
-
const isLargeTabletLandscape = () =>
|
41758
|
-
const
|
41757
|
+
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
41758
|
+
const width = landScapeWidth || '1366px';
|
41759
|
+
const height = landScapeHeight || '1024px';
|
41760
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
41761
|
+
};
|
41762
|
+
const isLargeTabletPortrait = (landScapeWidth, landScapeHeight) => {
|
41763
|
+
const height = landScapeWidth || '1366px';
|
41764
|
+
const width = landScapeHeight || '1024px';
|
41765
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
41766
|
+
};
|
41759
41767
|
const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
|
41760
41768
|
const isTablet = () => {
|
41761
41769
|
const scope = document.querySelector('.app-page').widget;
|
@@ -41754,8 +41754,16 @@ const isIpad = () => {
|
|
41754
41754
|
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
41755
41755
|
};
|
41756
41756
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
41757
|
-
const isLargeTabletLandscape = () =>
|
41758
|
-
const
|
41757
|
+
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
41758
|
+
const width = landScapeWidth || '1366px';
|
41759
|
+
const height = landScapeHeight || '1024px';
|
41760
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
41761
|
+
};
|
41762
|
+
const isLargeTabletPortrait = (landScapeWidth, landScapeHeight) => {
|
41763
|
+
const height = landScapeWidth || '1366px';
|
41764
|
+
const width = landScapeHeight || '1024px';
|
41765
|
+
return window.matchMedia("only screen and (min-device-width : " + width + ") and (max-device-width : " + width + ") and (min-device-height : " + height + ") and (max-device-height : " + height + ") and (min-width: " + width + ") and (max-width: " + width + ")").matches;
|
41766
|
+
};
|
41759
41767
|
const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
|
41760
41768
|
const isTablet = () => {
|
41761
41769
|
const scope = document.querySelector('.app-page').widget;
|