@igniteui/angular-templates 13.1.910 → 13.1.911-rc.0
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/igx-ts/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.ts +4 -4
- package/igx-ts/projects/_base/files/package.json +20 -20
- package/igx-ts/projects/_base/files/src/polyfills.ts +6 -6
- package/igx-ts/projects/side-nav-auth/files/package.json +21 -21
- package/package.json +2 -2
|
@@ -23,7 +23,7 @@ export class <%=ClassName%>Component {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
public get hasChildTransactions(): boolean {
|
|
26
|
-
return this.layout1.
|
|
26
|
+
return this.layout1.gridAPI.getChildGrids()
|
|
27
27
|
.find(c => c.transactions.getAggregatedChanges(false).length > 0) !== undefined;
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -68,7 +68,7 @@ export class <%=ClassName%>Component {
|
|
|
68
68
|
|
|
69
69
|
public commit(): void {
|
|
70
70
|
this.hierarchicalGrid.transactions.commit(this.localdata);
|
|
71
|
-
this.layout1.
|
|
71
|
+
this.layout1.gridAPI.getChildGrids().forEach((grid) => {
|
|
72
72
|
grid.transactions.commit(grid.data);
|
|
73
73
|
});
|
|
74
74
|
this.dialogChanges.close();
|
|
@@ -76,7 +76,7 @@ export class <%=ClassName%>Component {
|
|
|
76
76
|
|
|
77
77
|
public discard(): void {
|
|
78
78
|
this.hierarchicalGrid.transactions.clear();
|
|
79
|
-
this.layout1.
|
|
79
|
+
this.layout1.gridAPI.getChildGrids().forEach((grid) => {
|
|
80
80
|
grid.transactions.clear();
|
|
81
81
|
});
|
|
82
82
|
this.dialogChanges.close();
|
|
@@ -84,7 +84,7 @@ export class <%=ClassName%>Component {
|
|
|
84
84
|
|
|
85
85
|
public openCommitDialog(): void {
|
|
86
86
|
this.transactionsDataAll = [...this.hierarchicalGrid.transactions.getAggregatedChanges(true)];
|
|
87
|
-
this.layout1.
|
|
87
|
+
this.layout1.gridAPI.getChildGrids().forEach((grid) => {
|
|
88
88
|
this.transactionsDataAll = this.transactionsDataAll.concat(grid.transactions.getAggregatedChanges(true));
|
|
89
89
|
});
|
|
90
90
|
this.dialogChanges.open();
|
|
@@ -10,44 +10,44 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~13.
|
|
14
|
-
"@angular/common": "~13.
|
|
15
|
-
"@angular/compiler": "~13.
|
|
16
|
-
"@angular/core": "~13.
|
|
17
|
-
"@angular/forms": "~13.
|
|
18
|
-
"@angular/platform-browser": "~13.
|
|
19
|
-
"@angular/platform-browser-dynamic": "~13.
|
|
20
|
-
"@angular/router": "~13.
|
|
13
|
+
"@angular/animations": "~13.3.0",
|
|
14
|
+
"@angular/common": "~13.3.0",
|
|
15
|
+
"@angular/compiler": "~13.3.0",
|
|
16
|
+
"@angular/core": "~13.3.0",
|
|
17
|
+
"@angular/forms": "~13.3.0",
|
|
18
|
+
"@angular/platform-browser": "~13.3.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~13.3.0",
|
|
20
|
+
"@angular/router": "~13.3.0",
|
|
21
21
|
"hammerjs": "^2.0.8",
|
|
22
22
|
"igniteui-angular": "~13.1.0",
|
|
23
23
|
"core-js": "^3.6.5",
|
|
24
24
|
"jszip": "^3.5.0",
|
|
25
25
|
"minireset.css": "~0.0.4",
|
|
26
|
-
"rxjs": "~
|
|
26
|
+
"rxjs": "~7.5.0",
|
|
27
27
|
"tslib": "^2.3.0",
|
|
28
28
|
"zone.js": "~0.11.4"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~13.
|
|
32
|
-
"@angular-eslint/builder": "13.0
|
|
33
|
-
"@angular-eslint/eslint-plugin": "13.0
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "13.0
|
|
35
|
-
"@angular-eslint/schematics": "13.0
|
|
36
|
-
"@angular-eslint/template-parser": "13.0
|
|
37
|
-
"@angular/cli": "~13.
|
|
38
|
-
"@angular/compiler-cli": "~13.
|
|
39
|
-
"@types/jasmine": "~3.
|
|
31
|
+
"@angular-devkit/build-angular": "~13.3.0",
|
|
32
|
+
"@angular-eslint/builder": "13.1.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "13.1.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "13.1.0",
|
|
35
|
+
"@angular-eslint/schematics": "13.1.0",
|
|
36
|
+
"@angular-eslint/template-parser": "13.1.0",
|
|
37
|
+
"@angular/cli": "~13.3.0",
|
|
38
|
+
"@angular/compiler-cli": "~13.3.0",
|
|
39
|
+
"@types/jasmine": "~3.10.0",
|
|
40
40
|
"@types/node": "^12.11.1",
|
|
41
41
|
"@typescript-eslint/eslint-plugin": "5.3.0",
|
|
42
42
|
"@typescript-eslint/parser": "5.3.0",
|
|
43
43
|
"codelyzer": "^6.0.0",
|
|
44
44
|
"eslint": "^8.1.0",
|
|
45
45
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
46
|
-
"jasmine-core": "~
|
|
46
|
+
"jasmine-core": "~4.0.0",
|
|
47
47
|
"jasmine-spec-reporter": "~7.0.0",
|
|
48
48
|
"karma": "~6.3.0",
|
|
49
49
|
"karma-chrome-launcher": "~3.1.0",
|
|
50
|
-
"karma-coverage": "~2.0
|
|
50
|
+
"karma-coverage": "~2.1.0",
|
|
51
51
|
"karma-jasmine": "~4.0.0",
|
|
52
52
|
"karma-jasmine-html-reporter": "~1.7.0",
|
|
53
53
|
"protractor": "~7.0.0",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
* file.
|
|
9
9
|
*
|
|
10
10
|
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
|
11
|
-
* automatically update themselves. This includes
|
|
12
|
-
* Edge
|
|
11
|
+
* automatically update themselves. This includes recent versions of Safari, Chrome (including
|
|
12
|
+
* Opera), Edge on the desktop, and iOS and Chrome on mobile.
|
|
13
13
|
*
|
|
14
14
|
* Learn more in https://angular.io/guide/browser-support
|
|
15
15
|
*/
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
/***************************************************************************************************
|
|
46
46
|
* Zone JS is required by default for Angular itself.
|
|
47
47
|
*/
|
|
48
|
-
import 'zone.js'; // Included with Angular CLI.
|
|
48
|
+
import 'zone.js'; // Included with Angular CLI.
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
/***************************************************************************************************
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
/***************************************************************************************************
|
|
52
|
+
* APPLICATION IMPORTS
|
|
53
|
+
*/
|
|
@@ -10,37 +10,37 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~13.
|
|
14
|
-
"@angular/common": "~13.
|
|
15
|
-
"@angular/compiler": "~13.
|
|
16
|
-
"@angular/core": "~13.
|
|
17
|
-
"@angular/forms": "~13.
|
|
18
|
-
"@angular/platform-browser": "~13.
|
|
19
|
-
"@angular/platform-browser-dynamic": "~13.
|
|
20
|
-
"@angular/router": "~13.
|
|
13
|
+
"@angular/animations": "~13.3.0",
|
|
14
|
+
"@angular/common": "~13.3.0",
|
|
15
|
+
"@angular/compiler": "~13.3.0",
|
|
16
|
+
"@angular/core": "~13.3.0",
|
|
17
|
+
"@angular/forms": "~13.3.0",
|
|
18
|
+
"@angular/platform-browser": "~13.3.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~13.3.0",
|
|
20
|
+
"@angular/router": "~13.3.0",
|
|
21
21
|
"angular-auth-oidc-client": "^9.0.3",
|
|
22
22
|
"hammerjs": "^2.0.8",
|
|
23
23
|
"igniteui-angular": "~13.1.0",
|
|
24
24
|
"core-js": "^3.6.5",
|
|
25
25
|
"jszip": "^3.5.0",
|
|
26
26
|
"minireset.css": "~0.0.4",
|
|
27
|
-
"rxjs": "~
|
|
27
|
+
"rxjs": "~7.5.0",
|
|
28
28
|
"tslib": "^2.3.0",
|
|
29
29
|
"zone.js": "~0.11.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@angular-devkit/build-angular": "~13.
|
|
33
|
-
"@angular-eslint/builder": "13.0
|
|
34
|
-
"@angular-eslint/eslint-plugin": "13.0
|
|
35
|
-
"@angular-eslint/eslint-plugin-template": "13.0
|
|
36
|
-
"@angular-eslint/schematics": "13.0
|
|
37
|
-
"@angular-eslint/template-parser": "13.0
|
|
38
|
-
"@angular/cli": "~13.
|
|
39
|
-
"@angular/compiler-cli": "~13.
|
|
40
|
-
"@angular/language-service": "~13.
|
|
32
|
+
"@angular-devkit/build-angular": "~13.3.0",
|
|
33
|
+
"@angular-eslint/builder": "13.1.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin": "13.1.0",
|
|
35
|
+
"@angular-eslint/eslint-plugin-template": "13.1.0",
|
|
36
|
+
"@angular-eslint/schematics": "13.1.0",
|
|
37
|
+
"@angular-eslint/template-parser": "13.1.0",
|
|
38
|
+
"@angular/cli": "~13.3.0",
|
|
39
|
+
"@angular/compiler-cli": "~13.3.0",
|
|
40
|
+
"@angular/language-service": "~13.3.0",
|
|
41
41
|
"@types/facebook-js-sdk": "^2.8.6",
|
|
42
42
|
"@types/hammerjs": "^2.0.35",
|
|
43
|
-
"@types/jasmine": "~3.
|
|
43
|
+
"@types/jasmine": "~3.10.0",
|
|
44
44
|
"@types/jasminewd2": "~2.0.3",
|
|
45
45
|
"@types/node": "^12.11.1",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "5.3.0",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"codelyzer": "^6.0.0",
|
|
49
49
|
"eslint": "^8.1.0",
|
|
50
50
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
51
|
-
"jasmine-core": "~
|
|
51
|
+
"jasmine-core": "~4.0.0",
|
|
52
52
|
"jasmine-spec-reporter": "~7.0.0",
|
|
53
53
|
"karma": "~6.3.0",
|
|
54
54
|
"karma-chrome-launcher": "~3.1.0",
|
|
55
|
-
"karma-coverage": "~2.0
|
|
55
|
+
"karma-coverage": "~2.1.0",
|
|
56
56
|
"karma-jasmine": "~4.0.0",
|
|
57
57
|
"karma-jasmine-html-reporter": "~1.7.0",
|
|
58
58
|
"protractor": "~7.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.911-rc.0",
|
|
4
4
|
"description": "Templates for Ignite UI for Angular projects and components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Infragistics",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@igniteui/cli-core": "~9.1.0",
|
|
15
|
+
"@igniteui/cli-core": "~9.1.1-rc.0",
|
|
16
16
|
"typescript": "~4.4.4"
|
|
17
17
|
}
|
|
18
18
|
}
|