@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.
@@ -5960,9 +5960,9 @@
5960
5960
  }
5961
5961
  },
5962
5962
  "@wavemaker/variables": {
5963
- "version": "11.3.4-rc.5300",
5964
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.3.4-rc.5300.tgz",
5965
- "integrity": "sha512-r91Oo7Fx2FEjMRYnI9QLD1LsFbulMh6sKDD6kKqIiosVQhlnwdI6DAw7Jd/w3naoGTYVyn+BHU1q2rv+Wh9k0g==",
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.5300",
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.5300"
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 = () => window.matchMedia("only screen and (min-device-width : 1366px) and (max-device-width : 1366px) and (min-device-height : 1024px) and (max-device-height : 1024px) and (min-width: 1366px) and (max-width: 1366px)").matches;
45680
- const isLargeTabletPortrait = () => window.matchMedia("only screen and (min-device-width : 1024px) and (max-device-width : 1024px) and (min-device-height : 1366px) and (max-device-height : 1366px) and (min-width: 1024px) and (max-width: 1024px)").matches;
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 = () => window.matchMedia("only screen and (min-device-width : 1366px) and (max-device-width : 1366px) and (min-device-height : 1024px) and (max-device-height : 1024px) and (min-width: 1366px) and (max-width: 1366px)").matches;
41758
- const isLargeTabletPortrait = () => window.matchMedia("only screen and (min-device-width : 1024px) and (max-device-width : 1024px) and (min-device-height : 1366px) and (max-device-height : 1366px) and (min-width: 1024px) and (max-width: 1024px)").matches;
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 = () => window.matchMedia("only screen and (min-device-width : 1366px) and (max-device-width : 1366px) and (min-device-height : 1024px) and (max-device-height : 1024px) and (min-width: 1366px) and (max-width: 1366px)").matches;
41758
- const isLargeTabletPortrait = () => window.matchMedia("only screen and (min-device-width : 1024px) and (max-device-width : 1024px) and (min-device-height : 1366px) and (max-device-height : 1366px) and (min-width: 1024px) and (max-width: 1024px)").matches;
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;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.3.4-rc.5300",
3
+ "version": "11.3.4-rc.5309",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {