@wavemaker/angular-codegen 11.2.6-rc.5780 → 11.2.6-rc.5806

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.
@@ -70,7 +70,7 @@
70
70
  "tslib": "^2.0.0",
71
71
  "x2js": "3.2.6",
72
72
  "zone.js": "~0.11.4",
73
- "@wavemaker/app-ng-runtime": "11.2.6-rc.5780"
73
+ "@wavemaker/app-ng-runtime": "11.2.6-rc.5806"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@ampproject/rollup-plugin-closure-compiler": "0.8.5",
@@ -45676,6 +45676,7 @@ 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 isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
45679
45680
  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
45681
  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;
45681
45682
  const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
@@ -47051,6 +47052,7 @@ var Utils = /*#__PURE__*/Object.freeze({
47051
47052
  isIpod: isIpod,
47052
47053
  isIpad: isIpad,
47053
47054
  isIos: isIos,
47055
+ isSafari: isSafari,
47054
47056
  isLargeTabletLandscape: isLargeTabletLandscape,
47055
47057
  isLargeTabletPortrait: isLargeTabletPortrait,
47056
47058
  isMobile: isMobile,
@@ -41754,6 +41754,7 @@ 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 isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
41757
41758
  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
41759
  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;
41759
41760
  const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
@@ -43129,6 +43130,7 @@ var Utils = /*#__PURE__*/Object.freeze({
43129
43130
  isIpod: isIpod,
43130
43131
  isIpad: isIpad,
43131
43132
  isIos: isIos,
43133
+ isSafari: isSafari,
43132
43134
  isLargeTabletLandscape: isLargeTabletLandscape,
43133
43135
  isLargeTabletPortrait: isLargeTabletPortrait,
43134
43136
  isMobile: isMobile,
@@ -41754,6 +41754,7 @@ 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 isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
41757
41758
  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
41759
  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;
41759
41760
  const isMobile = () => isAndroid() || isIos() || isAndroidTablet() || $('#wm-mobile-display:visible').length > 0;
@@ -43129,6 +43130,7 @@ var Utils = /*#__PURE__*/Object.freeze({
43129
43130
  isIpod: isIpod,
43130
43131
  isIpad: isIpad,
43131
43132
  isIos: isIos,
43133
+ isSafari: isSafari,
43132
43134
  isLargeTabletLandscape: isLargeTabletLandscape,
43133
43135
  isLargeTabletPortrait: isLargeTabletPortrait,
43134
43136
  isMobile: isMobile,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.2.6-rc.5780",
3
+ "version": "11.2.6-rc.5806",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {