@wavemaker/angular-app 11.14.1-rc.241 → 11.14.1-rc.6301
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.
- package/dependencies/pipe-provider.cjs.js +8 -8
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +29 -29
- package/package-lock.json +29 -29
- package/package.json +6 -6
|
@@ -150692,14 +150692,14 @@ class ToDatePipe extends WmPipe {
|
|
|
150692
150692
|
}
|
|
150693
150693
|
return this.returnFn('', arguments, this.app.Variables);
|
|
150694
150694
|
}
|
|
150695
|
-
constructor(datePipe, i18nService,
|
|
150695
|
+
constructor(datePipe, i18nService, customPipeManager) {
|
|
150696
150696
|
super('toDate', customPipeManager);
|
|
150697
150697
|
this.datePipe = datePipe;
|
|
150698
150698
|
this.i18nService = i18nService;
|
|
150699
|
-
this.app = app;
|
|
150700
150699
|
this.customPipeManager = customPipeManager;
|
|
150700
|
+
this.app = inject(App);
|
|
150701
150701
|
}
|
|
150702
|
-
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(
|
|
150702
|
+
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150703
150703
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
|
|
150704
150704
|
}
|
|
150705
150705
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
|
|
@@ -150708,7 +150708,7 @@ class ToDatePipe extends WmPipe {
|
|
|
150708
150708
|
standalone: true,
|
|
150709
150709
|
name: 'toDate'
|
|
150710
150710
|
}]
|
|
150711
|
-
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type:
|
|
150711
|
+
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150712
150712
|
class ToNumberPipe {
|
|
150713
150713
|
transform(data, fracSize) {
|
|
150714
150714
|
if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
|
|
@@ -150796,9 +150796,9 @@ class SuffixPipe {
|
|
|
150796
150796
|
* Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
|
|
150797
150797
|
*/
|
|
150798
150798
|
class CustomPipe {
|
|
150799
|
-
constructor(
|
|
150800
|
-
this.app = app;
|
|
150799
|
+
constructor(custmeUserPipe) {
|
|
150801
150800
|
this.custmeUserPipe = custmeUserPipe;
|
|
150801
|
+
this.app = inject(App);
|
|
150802
150802
|
}
|
|
150803
150803
|
transform(data, pipename) {
|
|
150804
150804
|
let argumentArr = [];
|
|
@@ -150818,7 +150818,7 @@ class CustomPipe {
|
|
|
150818
150818
|
return data;
|
|
150819
150819
|
}
|
|
150820
150820
|
}
|
|
150821
|
-
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(
|
|
150821
|
+
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150822
150822
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
|
|
150823
150823
|
}
|
|
150824
150824
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
|
|
@@ -150827,7 +150827,7 @@ class CustomPipe {
|
|
|
150827
150827
|
standalone: true,
|
|
150828
150828
|
name: 'custom'
|
|
150829
150829
|
}]
|
|
150830
|
-
}], () => [{ type:
|
|
150830
|
+
}], () => [{ type: CustomPipeManager$1 }], null); })();
|
|
150831
150831
|
class TimeFromNowPipe {
|
|
150832
150832
|
transform(data) {
|
|
150833
150833
|
let timestamp;
|
package/dependency-report.html
CHANGED
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-rc.
|
|
3
|
+
"version": "11.14.1-rc.6301",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-rc.
|
|
9
|
+
"version": "11.14.1-rc.6301",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@angular/animations": "18.2.13",
|
|
12
12
|
"@angular/common": "18.2.13",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@fullcalendar/list": "6.1.18",
|
|
24
24
|
"@fullcalendar/timegrid": "6.1.18",
|
|
25
25
|
"@metrichor/jmespath": "0.3.1",
|
|
26
|
-
"@wavemaker/app-ng-runtime": "11.14.1-rc.
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-rc.
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-rc.6301",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-rc.6301",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-rc.
|
|
30
|
-
"@wavemaker/nvd3": "1.8.
|
|
31
|
-
"@wavemaker/variables": "11.14.1-rc.
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-rc.6301",
|
|
30
|
+
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
+
"@wavemaker/variables": "11.14.1-rc.6301",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -568,12 +568,12 @@
|
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
570
|
"node_modules/@angular-devkit/schematics": {
|
|
571
|
-
"version": "20.3.
|
|
572
|
-
"integrity": "sha512-
|
|
571
|
+
"version": "20.3.11",
|
|
572
|
+
"integrity": "sha512-ePbARvd3xaN2a+ozFWaoYQHz1pzyzzu247rxRoS4hSOr5jqCsogMqPoGxdBCx6nFlDlP/CYenFR7cFx5OBT4tg==",
|
|
573
573
|
"dev": true,
|
|
574
574
|
"license": "MIT",
|
|
575
575
|
"dependencies": {
|
|
576
|
-
"@angular-devkit/core": "20.3.
|
|
576
|
+
"@angular-devkit/core": "20.3.11",
|
|
577
577
|
"jsonc-parser": "3.3.1",
|
|
578
578
|
"magic-string": "0.30.17",
|
|
579
579
|
"ora": "8.2.0",
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
588
|
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
589
|
-
"version": "20.3.
|
|
590
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "20.3.11",
|
|
590
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"license": "MIT",
|
|
593
593
|
"dependencies": {
|
|
@@ -794,12 +794,12 @@
|
|
|
794
794
|
}
|
|
795
795
|
},
|
|
796
796
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
|
|
797
|
-
"version": "0.2003.
|
|
798
|
-
"integrity": "sha512
|
|
797
|
+
"version": "0.2003.11",
|
|
798
|
+
"integrity": "sha512-/56v/Le9UruIPqQXINoggns0//W2/BIaDd54kvjNK5PjQUyKKj6nmhMA1RgB0yDTBFh7lksLf8IyyGx9ZchGRA==",
|
|
799
799
|
"dev": true,
|
|
800
800
|
"license": "MIT",
|
|
801
801
|
"dependencies": {
|
|
802
|
-
"@angular-devkit/core": "20.3.
|
|
802
|
+
"@angular-devkit/core": "20.3.11",
|
|
803
803
|
"rxjs": "7.8.2"
|
|
804
804
|
},
|
|
805
805
|
"engines": {
|
|
@@ -809,8 +809,8 @@
|
|
|
809
809
|
}
|
|
810
810
|
},
|
|
811
811
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
|
|
812
|
-
"version": "20.3.
|
|
813
|
-
"integrity": "sha512-
|
|
812
|
+
"version": "20.3.11",
|
|
813
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
814
814
|
"dev": true,
|
|
815
815
|
"license": "MIT",
|
|
816
816
|
"dependencies": {
|
|
@@ -913,8 +913,8 @@
|
|
|
913
913
|
}
|
|
914
914
|
},
|
|
915
915
|
"node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
|
|
916
|
-
"version": "20.3.
|
|
917
|
-
"integrity": "sha512-
|
|
916
|
+
"version": "20.3.11",
|
|
917
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
918
918
|
"dev": true,
|
|
919
919
|
"license": "MIT",
|
|
920
920
|
"dependencies": {
|
|
@@ -8693,8 +8693,8 @@
|
|
|
8693
8693
|
}
|
|
8694
8694
|
},
|
|
8695
8695
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
8696
|
-
"version": "11.14.1-rc.
|
|
8697
|
-
"integrity": "sha512-
|
|
8696
|
+
"version": "11.14.1-rc.6301",
|
|
8697
|
+
"integrity": "sha512-vT9m3x2plFSbAudAz0L76hbZG0KcSjwYpxImgJueQYsJEMQMOaSWRYW9Dg2rrc/6tAAQkW5K5dZlVwNl0oCGmg==",
|
|
8698
8698
|
"license": "MIT",
|
|
8699
8699
|
"engines": {
|
|
8700
8700
|
"node": ">=18.16.1",
|
|
@@ -8702,8 +8702,8 @@
|
|
|
8702
8702
|
}
|
|
8703
8703
|
},
|
|
8704
8704
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
8705
|
-
"version": "11.14.1-rc.
|
|
8706
|
-
"integrity": "sha512-
|
|
8705
|
+
"version": "11.14.1-rc.6301",
|
|
8706
|
+
"integrity": "sha512-wiVECJ42P6i086VtJ2caBG5/6S43S65mZi1f/MbQT2LWugQESorDTMgj1E5seeMlJWC4dDBVCXrx0QZ4bEL+YQ==",
|
|
8707
8707
|
"license": "ISC"
|
|
8708
8708
|
},
|
|
8709
8709
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -8716,24 +8716,24 @@
|
|
|
8716
8716
|
}
|
|
8717
8717
|
},
|
|
8718
8718
|
"node_modules/@wavemaker/foundation-css": {
|
|
8719
|
-
"version": "11.14.1-rc.
|
|
8720
|
-
"integrity": "sha512-
|
|
8719
|
+
"version": "11.14.1-rc.6301",
|
|
8720
|
+
"integrity": "sha512-lMa1j5UdNZn3/rySs9rtQvbiDIjn9kG2gXOUIoba4tkaeiq2Sqi8wdzd9t0CE/qKMJ031OWkcJmiMwrVHqCV6g==",
|
|
8721
8721
|
"license": "ISC",
|
|
8722
8722
|
"dependencies": {
|
|
8723
8723
|
"chroma-js": "^3.1.2"
|
|
8724
8724
|
}
|
|
8725
8725
|
},
|
|
8726
8726
|
"node_modules/@wavemaker/nvd3": {
|
|
8727
|
-
"version": "1.8.
|
|
8728
|
-
"integrity": "sha512-
|
|
8727
|
+
"version": "1.8.15",
|
|
8728
|
+
"integrity": "sha512-ufRoz09lG1vAMfc+Qc0TC912m/bTmzQYTCJpaQ0T525i6J3+tjmT7dLbTLxRlA1KTsRFRHTaLi410R8RCYMjRg==",
|
|
8729
8729
|
"license": "Apache-2.0",
|
|
8730
8730
|
"peerDependencies": {
|
|
8731
8731
|
"d3": "7.8.5"
|
|
8732
8732
|
}
|
|
8733
8733
|
},
|
|
8734
8734
|
"node_modules/@wavemaker/variables": {
|
|
8735
|
-
"version": "11.14.1-rc.
|
|
8736
|
-
"integrity": "sha512-
|
|
8735
|
+
"version": "11.14.1-rc.6301",
|
|
8736
|
+
"integrity": "sha512-yY3OXHVvR3kIbHwyZS4Xulf02SpPTDmdQm1die1d1LGSZa+YRg4IIX3Pa2QgPZnBZH8sGF7Q12TZ3eVbIet8XA==",
|
|
8737
8737
|
"license": "ISC",
|
|
8738
8738
|
"dependencies": {
|
|
8739
8739
|
"@metrichor/jmespath": "^0.3.1",
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-rc.
|
|
3
|
+
"version": "11.14.1-rc.6301",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-rc.
|
|
9
|
+
"version": "11.14.1-rc.6301",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@angular/animations": "18.2.13",
|
|
12
12
|
"@angular/common": "18.2.13",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@fullcalendar/list": "6.1.18",
|
|
24
24
|
"@fullcalendar/timegrid": "6.1.18",
|
|
25
25
|
"@metrichor/jmespath": "0.3.1",
|
|
26
|
-
"@wavemaker/app-ng-runtime": "11.14.1-rc.
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-rc.
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-rc.6301",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-rc.6301",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-rc.
|
|
30
|
-
"@wavemaker/nvd3": "1.8.
|
|
31
|
-
"@wavemaker/variables": "11.14.1-rc.
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-rc.6301",
|
|
30
|
+
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
+
"@wavemaker/variables": "11.14.1-rc.6301",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -568,12 +568,12 @@
|
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
570
|
"node_modules/@angular-devkit/schematics": {
|
|
571
|
-
"version": "20.3.
|
|
572
|
-
"integrity": "sha512-
|
|
571
|
+
"version": "20.3.11",
|
|
572
|
+
"integrity": "sha512-ePbARvd3xaN2a+ozFWaoYQHz1pzyzzu247rxRoS4hSOr5jqCsogMqPoGxdBCx6nFlDlP/CYenFR7cFx5OBT4tg==",
|
|
573
573
|
"dev": true,
|
|
574
574
|
"license": "MIT",
|
|
575
575
|
"dependencies": {
|
|
576
|
-
"@angular-devkit/core": "20.3.
|
|
576
|
+
"@angular-devkit/core": "20.3.11",
|
|
577
577
|
"jsonc-parser": "3.3.1",
|
|
578
578
|
"magic-string": "0.30.17",
|
|
579
579
|
"ora": "8.2.0",
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
588
|
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
589
|
-
"version": "20.3.
|
|
590
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "20.3.11",
|
|
590
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"license": "MIT",
|
|
593
593
|
"dependencies": {
|
|
@@ -794,12 +794,12 @@
|
|
|
794
794
|
}
|
|
795
795
|
},
|
|
796
796
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
|
|
797
|
-
"version": "0.2003.
|
|
798
|
-
"integrity": "sha512
|
|
797
|
+
"version": "0.2003.11",
|
|
798
|
+
"integrity": "sha512-/56v/Le9UruIPqQXINoggns0//W2/BIaDd54kvjNK5PjQUyKKj6nmhMA1RgB0yDTBFh7lksLf8IyyGx9ZchGRA==",
|
|
799
799
|
"dev": true,
|
|
800
800
|
"license": "MIT",
|
|
801
801
|
"dependencies": {
|
|
802
|
-
"@angular-devkit/core": "20.3.
|
|
802
|
+
"@angular-devkit/core": "20.3.11",
|
|
803
803
|
"rxjs": "7.8.2"
|
|
804
804
|
},
|
|
805
805
|
"engines": {
|
|
@@ -809,8 +809,8 @@
|
|
|
809
809
|
}
|
|
810
810
|
},
|
|
811
811
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
|
|
812
|
-
"version": "20.3.
|
|
813
|
-
"integrity": "sha512-
|
|
812
|
+
"version": "20.3.11",
|
|
813
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
814
814
|
"dev": true,
|
|
815
815
|
"license": "MIT",
|
|
816
816
|
"dependencies": {
|
|
@@ -913,8 +913,8 @@
|
|
|
913
913
|
}
|
|
914
914
|
},
|
|
915
915
|
"node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
|
|
916
|
-
"version": "20.3.
|
|
917
|
-
"integrity": "sha512-
|
|
916
|
+
"version": "20.3.11",
|
|
917
|
+
"integrity": "sha512-KZDhMemUci42D9CNziM+GxQK5wEMP+TDL9ssUHIkvrr1lsFViHIO+pfzs7QfyM8n6hr7at4gQN9IZRV4rRKyQQ==",
|
|
918
918
|
"dev": true,
|
|
919
919
|
"license": "MIT",
|
|
920
920
|
"dependencies": {
|
|
@@ -8693,8 +8693,8 @@
|
|
|
8693
8693
|
}
|
|
8694
8694
|
},
|
|
8695
8695
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
8696
|
-
"version": "11.14.1-rc.
|
|
8697
|
-
"integrity": "sha512-
|
|
8696
|
+
"version": "11.14.1-rc.6301",
|
|
8697
|
+
"integrity": "sha512-vT9m3x2plFSbAudAz0L76hbZG0KcSjwYpxImgJueQYsJEMQMOaSWRYW9Dg2rrc/6tAAQkW5K5dZlVwNl0oCGmg==",
|
|
8698
8698
|
"license": "MIT",
|
|
8699
8699
|
"engines": {
|
|
8700
8700
|
"node": ">=18.16.1",
|
|
@@ -8702,8 +8702,8 @@
|
|
|
8702
8702
|
}
|
|
8703
8703
|
},
|
|
8704
8704
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
8705
|
-
"version": "11.14.1-rc.
|
|
8706
|
-
"integrity": "sha512-
|
|
8705
|
+
"version": "11.14.1-rc.6301",
|
|
8706
|
+
"integrity": "sha512-wiVECJ42P6i086VtJ2caBG5/6S43S65mZi1f/MbQT2LWugQESorDTMgj1E5seeMlJWC4dDBVCXrx0QZ4bEL+YQ==",
|
|
8707
8707
|
"license": "ISC"
|
|
8708
8708
|
},
|
|
8709
8709
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -8716,24 +8716,24 @@
|
|
|
8716
8716
|
}
|
|
8717
8717
|
},
|
|
8718
8718
|
"node_modules/@wavemaker/foundation-css": {
|
|
8719
|
-
"version": "11.14.1-rc.
|
|
8720
|
-
"integrity": "sha512-
|
|
8719
|
+
"version": "11.14.1-rc.6301",
|
|
8720
|
+
"integrity": "sha512-lMa1j5UdNZn3/rySs9rtQvbiDIjn9kG2gXOUIoba4tkaeiq2Sqi8wdzd9t0CE/qKMJ031OWkcJmiMwrVHqCV6g==",
|
|
8721
8721
|
"license": "ISC",
|
|
8722
8722
|
"dependencies": {
|
|
8723
8723
|
"chroma-js": "^3.1.2"
|
|
8724
8724
|
}
|
|
8725
8725
|
},
|
|
8726
8726
|
"node_modules/@wavemaker/nvd3": {
|
|
8727
|
-
"version": "1.8.
|
|
8728
|
-
"integrity": "sha512-
|
|
8727
|
+
"version": "1.8.15",
|
|
8728
|
+
"integrity": "sha512-ufRoz09lG1vAMfc+Qc0TC912m/bTmzQYTCJpaQ0T525i6J3+tjmT7dLbTLxRlA1KTsRFRHTaLi410R8RCYMjRg==",
|
|
8729
8729
|
"license": "Apache-2.0",
|
|
8730
8730
|
"peerDependencies": {
|
|
8731
8731
|
"d3": "7.8.5"
|
|
8732
8732
|
}
|
|
8733
8733
|
},
|
|
8734
8734
|
"node_modules/@wavemaker/variables": {
|
|
8735
|
-
"version": "11.14.1-rc.
|
|
8736
|
-
"integrity": "sha512-
|
|
8735
|
+
"version": "11.14.1-rc.6301",
|
|
8736
|
+
"integrity": "sha512-yY3OXHVvR3kIbHwyZS4Xulf02SpPTDmdQm1die1d1LGSZa+YRg4IIX3Pa2QgPZnBZH8sGF7Q12TZ3eVbIet8XA==",
|
|
8737
8737
|
"license": "ISC",
|
|
8738
8738
|
"dependencies": {
|
|
8739
8739
|
"@metrichor/jmespath": "^0.3.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-rc.
|
|
3
|
+
"version": "11.14.1-rc.6301",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"start": "./node_modules/.bin/ng serve",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@fullcalendar/list": "6.1.18",
|
|
37
37
|
"@fullcalendar/timegrid": "6.1.18",
|
|
38
38
|
"@metrichor/jmespath": "0.3.1",
|
|
39
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-rc.
|
|
39
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-rc.6301",
|
|
40
40
|
"@wavemaker/focus-trap": "1.0.1",
|
|
41
|
-
"@wavemaker/foundation-css": "11.14.1-rc.
|
|
42
|
-
"@wavemaker/nvd3": "1.8.
|
|
43
|
-
"@wavemaker/variables": "11.14.1-rc.
|
|
41
|
+
"@wavemaker/foundation-css": "11.14.1-rc.6301",
|
|
42
|
+
"@wavemaker/nvd3": "1.8.15",
|
|
43
|
+
"@wavemaker/variables": "11.14.1-rc.6301",
|
|
44
44
|
"@ztree/ztree_v3": "3.5.48",
|
|
45
45
|
"acorn": "^8.15.0",
|
|
46
46
|
"angular-imask": "7.6.1",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"tslib": "2.8.1",
|
|
63
63
|
"x2js": "3.4.4",
|
|
64
64
|
"zone.js": "0.15.1",
|
|
65
|
-
"@wavemaker/app-ng-runtime": "11.14.1-rc.
|
|
65
|
+
"@wavemaker/app-ng-runtime": "11.14.1-rc.6301"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|