@wavemaker/angular-codegen 11.9.0-next.27470 → 11.9.0-next.27476
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 +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/dependencies/pipe-provider.cjs.js +6 -4
- angular-codegen/dependencies/transpilation-mobile.cjs.js +3 -2
- angular-codegen/dependencies/transpilation-web.cjs.js +3 -2
- angular-codegen/package.json +1 -1
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@metrichor/jmespath": "0.3.1",
|
|
37
37
|
"@wavemaker/focus-trap": "1.0.1",
|
|
38
38
|
"@wavemaker/nvd3": "1.8.12",
|
|
39
|
-
"@wavemaker/variables": "11.9.0-next.
|
|
39
|
+
"@wavemaker/variables": "11.9.0-next.27476",
|
|
40
40
|
"@ztree/ztree_v3": "3.5.48",
|
|
41
41
|
"angular-imask": "^7.6.1",
|
|
42
42
|
"angular2-websocket": "0.9.7",
|
|
@@ -6943,9 +6943,9 @@
|
|
|
6943
6943
|
}
|
|
6944
6944
|
},
|
|
6945
6945
|
"node_modules/@wavemaker/variables": {
|
|
6946
|
-
"version": "11.9.0-next.
|
|
6947
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.9.0-next.
|
|
6948
|
-
"integrity": "sha512-
|
|
6946
|
+
"version": "11.9.0-next.27476",
|
|
6947
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.9.0-next.27476.tgz",
|
|
6948
|
+
"integrity": "sha512-Euo2cEN4LfFYD/ZIUTpcRiMpMqjMBAv8e5SWB3PrkTrTI13HWRa48+glfF0NUgQ+tkuWhWyxcstRXbQqPkgPJA==",
|
|
6949
6949
|
"dependencies": {
|
|
6950
6950
|
"@metrichor/jmespath": "^0.3.1",
|
|
6951
6951
|
"he": "^1.2.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@metrichor/jmespath": "0.3.1",
|
|
46
46
|
"@wavemaker/focus-trap": "1.0.1",
|
|
47
47
|
"@wavemaker/nvd3": "1.8.12",
|
|
48
|
-
"@wavemaker/variables": "11.9.0-next.
|
|
48
|
+
"@wavemaker/variables": "11.9.0-next.27476",
|
|
49
49
|
"@ztree/ztree_v3": "3.5.48",
|
|
50
50
|
"angular-imask": "^7.6.1",
|
|
51
51
|
"angular2-websocket": "0.9.7",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tslib": "2.4.1",
|
|
71
71
|
"x2js": "3.4.4",
|
|
72
72
|
"zone.js": "0.14.7",
|
|
73
|
-
"@wavemaker/app-ng-runtime": "11.9.0-next.
|
|
73
|
+
"@wavemaker/app-ng-runtime": "11.9.0-next.27476"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
|
@@ -143611,7 +143611,6 @@ const REGEX$1 = {
|
|
|
143611
143611
|
IPOD: /iPod/i,
|
|
143612
143612
|
IPAD: /iPad/i,
|
|
143613
143613
|
MAC: /Mac/i,
|
|
143614
|
-
MACINTEL: /MacIntel/i,
|
|
143615
143614
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
143616
143615
|
MOBILE: /Mobile/i,
|
|
143617
143616
|
WINDOWS: /Windows Phone/i,
|
|
@@ -143655,9 +143654,10 @@ const isAndroidTablet$1 = () => REGEX$1.ANDROID_TABLET.test(userAgent$1) && !((/
|
|
|
143655
143654
|
const isIphone$1 = () => REGEX$1.IPHONE.test(userAgent$1);
|
|
143656
143655
|
const isIpod$1 = () => REGEX$1.IPOD.test(userAgent$1);
|
|
143657
143656
|
const isIpad$1 = () => {
|
|
143658
|
-
return REGEX$1.IPAD.test(userAgent$1) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 &&
|
|
143657
|
+
return REGEX$1.IPAD.test(userAgent$1) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX$1.MAC.test(window.navigator.platform));
|
|
143659
143658
|
};
|
|
143660
143659
|
const isIos$1 = () => isIphone$1() || isIpod$1() || isIpad$1();
|
|
143660
|
+
const isSafari$1 = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
|
|
143661
143661
|
const isLargeTabletLandscape$1 = (landScapeWidth, landScapeHeight) => {
|
|
143662
143662
|
const width = landScapeWidth || '1366px';
|
|
143663
143663
|
const height = landScapeHeight || '1024px';
|
|
@@ -145123,6 +145123,7 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
145123
145123
|
isNumberType: isNumberType$1,
|
|
145124
145124
|
isObject: isObject$3,
|
|
145125
145125
|
isPageable: isPageable$1,
|
|
145126
|
+
isSafari: isSafari$1,
|
|
145126
145127
|
isTablet: isTablet$1,
|
|
145127
145128
|
isValidWebURL: isValidWebURL$1,
|
|
145128
145129
|
isVideoFile: isVideoFile$1,
|
|
@@ -201839,7 +201840,6 @@ const REGEX = {
|
|
|
201839
201840
|
IPOD: /iPod/i,
|
|
201840
201841
|
IPAD: /iPad/i,
|
|
201841
201842
|
MAC: /Mac/i,
|
|
201842
|
-
MACINTEL: /MacIntel/i,
|
|
201843
201843
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
201844
201844
|
MOBILE: /Mobile/i,
|
|
201845
201845
|
WINDOWS: /Windows Phone/i,
|
|
@@ -201883,9 +201883,10 @@ const isAndroidTablet = () => REGEX.ANDROID_TABLET.test(userAgent) && !((/Tablet
|
|
|
201883
201883
|
const isIphone = () => REGEX.IPHONE.test(userAgent);
|
|
201884
201884
|
const isIpod = () => REGEX.IPOD.test(userAgent);
|
|
201885
201885
|
const isIpad = () => {
|
|
201886
|
-
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 &&
|
|
201886
|
+
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
|
201887
201887
|
};
|
|
201888
201888
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
|
201889
|
+
const isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
|
|
201889
201890
|
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
|
201890
201891
|
const width = landScapeWidth || '1366px';
|
|
201891
201892
|
const height = landScapeHeight || '1024px';
|
|
@@ -203351,6 +203352,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
203351
203352
|
isNumberType: isNumberType,
|
|
203352
203353
|
isObject: isObject,
|
|
203353
203354
|
isPageable: isPageable,
|
|
203355
|
+
isSafari: isSafari,
|
|
203354
203356
|
isTablet: isTablet,
|
|
203355
203357
|
isValidWebURL: isValidWebURL,
|
|
203356
203358
|
isVideoFile: isVideoFile,
|
|
@@ -87002,7 +87002,6 @@ const REGEX = {
|
|
|
87002
87002
|
IPOD: /iPod/i,
|
|
87003
87003
|
IPAD: /iPad/i,
|
|
87004
87004
|
MAC: /Mac/i,
|
|
87005
|
-
MACINTEL: /MacIntel/i,
|
|
87006
87005
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
87007
87006
|
MOBILE: /Mobile/i,
|
|
87008
87007
|
WINDOWS: /Windows Phone/i,
|
|
@@ -87046,9 +87045,10 @@ const isAndroidTablet = () => REGEX.ANDROID_TABLET.test(userAgent) && !((/Tablet
|
|
|
87046
87045
|
const isIphone = () => REGEX.IPHONE.test(userAgent);
|
|
87047
87046
|
const isIpod = () => REGEX.IPOD.test(userAgent);
|
|
87048
87047
|
const isIpad = () => {
|
|
87049
|
-
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 &&
|
|
87048
|
+
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
|
87050
87049
|
};
|
|
87051
87050
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
|
87051
|
+
const isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
|
|
87052
87052
|
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
|
87053
87053
|
const width = landScapeWidth || '1366px';
|
|
87054
87054
|
const height = landScapeHeight || '1024px';
|
|
@@ -88514,6 +88514,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
88514
88514
|
isNumberType: isNumberType,
|
|
88515
88515
|
isObject: isObject,
|
|
88516
88516
|
isPageable: isPageable,
|
|
88517
|
+
isSafari: isSafari,
|
|
88517
88518
|
isTablet: isTablet,
|
|
88518
88519
|
isValidWebURL: isValidWebURL,
|
|
88519
88520
|
isVideoFile: isVideoFile,
|
|
@@ -98193,7 +98193,6 @@ const REGEX = {
|
|
|
98193
98193
|
IPOD: /iPod/i,
|
|
98194
98194
|
IPAD: /iPad/i,
|
|
98195
98195
|
MAC: /Mac/i,
|
|
98196
|
-
MACINTEL: /MacIntel/i,
|
|
98197
98196
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
98198
98197
|
MOBILE: /Mobile/i,
|
|
98199
98198
|
WINDOWS: /Windows Phone/i,
|
|
@@ -98237,9 +98236,10 @@ const isAndroidTablet = () => REGEX.ANDROID_TABLET.test(userAgent) && !((/Tablet
|
|
|
98237
98236
|
const isIphone = () => REGEX.IPHONE.test(userAgent);
|
|
98238
98237
|
const isIpod = () => REGEX.IPOD.test(userAgent);
|
|
98239
98238
|
const isIpad = () => {
|
|
98240
|
-
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 &&
|
|
98239
|
+
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
|
98241
98240
|
};
|
|
98242
98241
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
|
98242
|
+
const isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
|
|
98243
98243
|
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
|
98244
98244
|
const width = landScapeWidth || '1366px';
|
|
98245
98245
|
const height = landScapeHeight || '1024px';
|
|
@@ -99705,6 +99705,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
99705
99705
|
isNumberType: isNumberType,
|
|
99706
99706
|
isObject: isObject,
|
|
99707
99707
|
isPageable: isPageable,
|
|
99708
|
+
isSafari: isSafari,
|
|
99708
99709
|
isTablet: isTablet,
|
|
99709
99710
|
isValidWebURL: isValidWebURL,
|
|
99710
99711
|
isVideoFile: isVideoFile,
|