@wavemaker/angular-codegen 12.0.0-next.140489 → 12.0.0-next.140491

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.
@@ -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.11",
39
- "@wavemaker/variables": "12.0.0-next.140489",
39
+ "@wavemaker/variables": "12.0.0-next.140491",
40
40
  "@ztree/ztree_v3": "3.5.48",
41
41
  "angular-imask": "^7.6.1",
42
42
  "angular2-websocket": "0.9.7",
@@ -81,7 +81,7 @@
81
81
  "@types/node": "12.11.1",
82
82
  "@types/sizzle": "^2.3.3",
83
83
  "babel-loader": "^9.1.2",
84
- "cheerio": "^1.0.0-rc.12",
84
+ "cheerio": "1.0.0-rc.12",
85
85
  "codelyzer": "5.1.2",
86
86
  "compression-webpack-plugin": "10.0.0",
87
87
  "fs": "0.0.1-security",
@@ -6397,9 +6397,9 @@
6397
6397
  }
6398
6398
  },
6399
6399
  "node_modules/@wavemaker/variables": {
6400
- "version": "12.0.0-next.140489",
6401
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.140489.tgz",
6402
- "integrity": "sha512-HohZr4cHK/YTEmk5tKAkfYLSBf5RGbnBBvLkoyXtrrl//yiBgqavtgMCMAUbcC4JMS0YhOWaV/39C4urq915ZQ==",
6400
+ "version": "12.0.0-next.140491",
6401
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.140491.tgz",
6402
+ "integrity": "sha512-wtIDervDyxJY92+ZwoAXiq/+mIJ//l3QBd07ANub/GdDepcgbwpEw7HUCs2XpnwSLRxA4EOxUWPjVG6hGEViCA==",
6403
6403
  "dependencies": {
6404
6404
  "@metrichor/jmespath": "^0.3.1",
6405
6405
  "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.11",
48
- "@wavemaker/variables": "12.0.0-next.140489",
48
+ "@wavemaker/variables": "12.0.0-next.140491",
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": "12.0.0-next.140489"
73
+ "@wavemaker/app-ng-runtime": "12.0.0-next.140491"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -91,7 +91,7 @@
91
91
  "@types/node": "12.11.1",
92
92
  "@types/sizzle": "^2.3.3",
93
93
  "babel-loader": "^9.1.2",
94
- "cheerio": "^1.0.0-rc.12",
94
+ "cheerio": "1.0.0-rc.12",
95
95
  "codelyzer": "5.1.2",
96
96
  "compression-webpack-plugin": "10.0.0",
97
97
  "fs": "0.0.1-security",
@@ -71,6 +71,7 @@ import "hammerjs/hammer.min.js";
71
71
  import "iscroll/build/iscroll.js";
72
72
  import "tabbable/dist/index.umd.min.js";
73
73
  import "@wavemaker/focus-trap/dist/focus-trap.umd.min.js";
74
+ import "x2js"
74
75
 
75
76
 
76
77
 
@@ -143879,7 +143879,7 @@ const getFormattedDate$1 = (datePipe, dateObj, format, timeZone, isTimeStampType
143879
143879
  if (format === 'UTC') {
143880
143880
  return new Date(dateObj).toISOString();
143881
143881
  }
143882
- if (timeZone) {
143882
+ if (timeZone && timeZone !== moment.defaultZone?.name) {
143883
143883
  const momentFormat = format.replaceAll('y', 'Y').replaceAll('d', 'D').replace('a', 'A');
143884
143884
  if (isIntervalDateTime) { // dates which are of type time widget (value is hh:mm:ss) but returned as date string from time comp
143885
143885
  return moment(dateObj).format(momentFormat);
@@ -202107,7 +202107,7 @@ const getFormattedDate = (datePipe, dateObj, format, timeZone, isTimeStampType,
202107
202107
  if (format === 'UTC') {
202108
202108
  return new Date(dateObj).toISOString();
202109
202109
  }
202110
- if (timeZone) {
202110
+ if (timeZone && timeZone !== moment.defaultZone?.name) {
202111
202111
  const momentFormat = format.replaceAll('y', 'Y').replaceAll('d', 'D').replace('a', 'A');
202112
202112
  if (isIntervalDateTime) { // dates which are of type time widget (value is hh:mm:ss) but returned as date string from time comp
202113
202113
  return moment(dateObj).format(momentFormat);
@@ -87270,7 +87270,7 @@ const getFormattedDate = (datePipe, dateObj, format, timeZone, isTimeStampType,
87270
87270
  if (format === 'UTC') {
87271
87271
  return new Date(dateObj).toISOString();
87272
87272
  }
87273
- if (timeZone) {
87273
+ if (timeZone && timeZone !== moment.defaultZone?.name) {
87274
87274
  const momentFormat = format.replaceAll('y', 'Y').replaceAll('d', 'D').replace('a', 'A');
87275
87275
  if (isIntervalDateTime) { // dates which are of type time widget (value is hh:mm:ss) but returned as date string from time comp
87276
87276
  return moment(dateObj).format(momentFormat);
@@ -98461,7 +98461,7 @@ const getFormattedDate = (datePipe, dateObj, format, timeZone, isTimeStampType,
98461
98461
  if (format === 'UTC') {
98462
98462
  return new Date(dateObj).toISOString();
98463
98463
  }
98464
- if (timeZone) {
98464
+ if (timeZone && timeZone !== moment.defaultZone?.name) {
98465
98465
  const momentFormat = format.replaceAll('y', 'Y').replaceAll('d', 'D').replace('a', 'A');
98466
98466
  if (isIntervalDateTime) { // dates which are of type time widget (value is hh:mm:ss) but returned as date string from time comp
98467
98467
  return moment(dateObj).format(momentFormat);
@@ -9,7 +9,7 @@
9
9
  "version": "1.0.0",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "cheerio": "^1.0.0-rc.2",
12
+ "cheerio": "1.0.0-rc.12",
13
13
  "decode-uri-component": "^0.2.0",
14
14
  "express": "^4.16.4",
15
15
  "fast-xml-parser": "^3.19.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "12.0.0-next.140489",
3
+ "version": "12.0.0-next.140491",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -11,7 +11,7 @@
11
11
  "author": "",
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
- "cheerio": "^1.0.0-rc.2",
14
+ "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
16
16
  "express": "^4.16.4",
17
17
  "fast-xml-parser": "^3.19.0",