@igniteui/angular-templates 20.1.1600-alpha.0 → 21.0.1480-beta.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/constants.d.ts +1 -1
- package/constants.js +1 -1
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.ts +1 -1
- package/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.component.ts +1 -1
- package/igx-ts/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.ts +3 -4
- package/igx-ts/projects/_base/files/angular.json +2 -2
- package/igx-ts/projects/_base/files/package.json +39 -19
- package/igx-ts/projects/_base/files/tsconfig.json +2 -1
- package/igx-ts/projects/side-nav-auth/files/package.json +25 -24
- package/igx-ts-legacy/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.ts +1 -1
- package/igx-ts-legacy/grid/default/files/src/app/__path__/__filePrefix__.component.ts +1 -1
- package/igx-ts-legacy/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.ts +3 -3
- package/igx-ts-legacy/projects/_base/files/angular.json +2 -2
- package/igx-ts-legacy/projects/_base/files/package.json +45 -26
- package/igx-ts-legacy/projects/_base/files/tsconfig.json +7 -2
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +25 -24
- package/package.json +2 -2
package/constants.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~
|
|
1
|
+
export declare const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~21.0.0";
|
package/constants.js
CHANGED
|
@@ -93,7 +93,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
93
93
|
public earliestSummary = EarliestSummary;
|
|
94
94
|
public soonSummary = SoonSummary;
|
|
95
95
|
|
|
96
|
-
public cols!: QueryList<
|
|
96
|
+
public cols!: QueryList<IgxColumnComponent>;
|
|
97
97
|
public hiddenColsLength = 0;
|
|
98
98
|
public pinnedColsLength = 0;
|
|
99
99
|
|
|
@@ -17,7 +17,7 @@ export class <%=ClassName%>Component implements OnInit {
|
|
|
17
17
|
this.localData = employeesData;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
public onColumnInit(column:
|
|
20
|
+
public onColumnInit(column: IgxColumnComponent): void {
|
|
21
21
|
if (column.field === 'RegistererDate') {
|
|
22
22
|
column.formatter = (date => date.toLocaleDateString());
|
|
23
23
|
}
|
|
@@ -13,8 +13,7 @@ import {
|
|
|
13
13
|
IgxInputGroupComponent,
|
|
14
14
|
IgxLabelDirective,
|
|
15
15
|
IgxInputDirective,
|
|
16
|
-
IgxCheckboxComponent
|
|
17
|
-
GridType
|
|
16
|
+
IgxCheckboxComponent
|
|
18
17
|
} from '<%=igxPackage%>';
|
|
19
18
|
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
20
19
|
import { SINGERS } from './data';
|
|
@@ -90,13 +89,13 @@ export class <%=ClassName%>Component {
|
|
|
90
89
|
|
|
91
90
|
public formatter = (a: number): number => a;
|
|
92
91
|
|
|
93
|
-
public undo(grid:
|
|
92
|
+
public undo(grid: any): void {
|
|
94
93
|
/* exit edit mode */
|
|
95
94
|
grid.crudService.endEdit(/* commit the edit transaction */ false);
|
|
96
95
|
grid.transactions.undo();
|
|
97
96
|
}
|
|
98
97
|
|
|
99
|
-
public redo(grid:
|
|
98
|
+
public redo(grid: any): void {
|
|
100
99
|
grid.transactions.redo();
|
|
101
100
|
}
|
|
102
101
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"prefix": "app",
|
|
16
16
|
"architect": {
|
|
17
17
|
"build": {
|
|
18
|
-
"builder": "@angular
|
|
18
|
+
"builder": "@angular/build:application",
|
|
19
19
|
"options": {
|
|
20
20
|
"outputPath": "dist/<%=dashName%>",
|
|
21
21
|
"index": "src/index.html",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"defaultConfiguration": "production"
|
|
67
67
|
},
|
|
68
68
|
"serve": {
|
|
69
|
-
"builder": "@angular
|
|
69
|
+
"builder": "@angular/build:dev-server",
|
|
70
70
|
"configurations": {
|
|
71
71
|
"production": {
|
|
72
72
|
"buildTarget": "<%=dashName%>:build:production"
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~21.0.0",
|
|
15
|
+
"@angular/common": "~21.0.0",
|
|
16
|
+
"@angular/compiler": "~21.0.0",
|
|
17
|
+
"@angular/core": "~21.0.0",
|
|
18
|
+
"@angular/forms": "~21.0.0",
|
|
19
|
+
"@angular/platform-browser": "~21.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~21.0.0",
|
|
21
|
+
"@angular/router": "~21.0.0",
|
|
22
22
|
"hammerjs": "~2.0.8",
|
|
23
|
-
"igniteui-angular": "~
|
|
23
|
+
"igniteui-angular": "~21.0.0-alpha.6",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.1",
|
|
26
26
|
"tslib": "~2.8.1",
|
|
@@ -28,27 +28,47 @@
|
|
|
28
28
|
},
|
|
29
29
|
"overrides": {
|
|
30
30
|
"reveal-sdk-wrappers-angular": {
|
|
31
|
-
"@angular/core": "^
|
|
32
|
-
"@angular/common": "^
|
|
31
|
+
"@angular/core": "^21.0.0",
|
|
32
|
+
"@angular/common": "^21.0.0",
|
|
33
|
+
"rxjs": "~7.8.1"
|
|
34
|
+
},
|
|
35
|
+
"igniteui-angular-charts": {
|
|
36
|
+
"@angular/core": "^21.0.0",
|
|
37
|
+
"@angular/common": "^21.0.0",
|
|
38
|
+
"@angular/compiler": "^21.0.0",
|
|
39
|
+
"rxjs": "~7.8.1"
|
|
40
|
+
},
|
|
41
|
+
"igniteui-angular-gauges": {
|
|
42
|
+
"@angular/core": "^21.0.0",
|
|
43
|
+
"@angular/common": "^21.0.0",
|
|
44
|
+
"@angular/compiler": "^21.0.0",
|
|
45
|
+
"rxjs": "~7.8.1"
|
|
46
|
+
},
|
|
47
|
+
"igniteui-angular-maps": {
|
|
48
|
+
"@angular/core": "^21.0.0",
|
|
49
|
+
"@angular/common": "^21.0.0",
|
|
50
|
+
"@angular/compiler": "^21.0.0",
|
|
51
|
+
"rxjs": "~7.8.1"
|
|
33
52
|
},
|
|
34
53
|
"glob": "^11.0.3",
|
|
35
54
|
"rimraf": "^6.0.1"
|
|
36
55
|
},
|
|
37
56
|
"devDependencies": {
|
|
38
|
-
"@angular
|
|
39
|
-
"@angular/
|
|
40
|
-
"@angular/
|
|
57
|
+
"@angular/build": "~21.0.0",
|
|
58
|
+
"@angular-devkit/build-angular": "~21.0.0",
|
|
59
|
+
"@angular/cli": "~21.0.0",
|
|
60
|
+
"@angular/compiler-cli": "~21.0.0",
|
|
41
61
|
"@types/jasmine": "~5.1.4",
|
|
42
|
-
"angular-eslint": "~
|
|
43
|
-
"eslint": "~9.
|
|
62
|
+
"angular-eslint": "~21.0.1",
|
|
63
|
+
"eslint": "~9.39.1",
|
|
44
64
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
45
|
-
"jasmine-core": "~5.
|
|
65
|
+
"jasmine-core": "~5.12.1",
|
|
46
66
|
"karma": "~6.4.4",
|
|
47
67
|
"karma-chrome-launcher": "~3.2.0",
|
|
48
68
|
"karma-coverage": "~2.2.1",
|
|
49
69
|
"karma-jasmine": "~5.1.0",
|
|
50
70
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
51
|
-
"typescript": "~5.9.
|
|
52
|
-
"typescript-eslint": "~8.
|
|
71
|
+
"typescript": "~5.9.3",
|
|
72
|
+
"typescript-eslint": "~8.47.0"
|
|
53
73
|
}
|
|
54
74
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"noImplicitReturns": true,
|
|
10
10
|
"noFallthroughCasesInSwitch": true,
|
|
11
11
|
"skipLibCheck": true,
|
|
12
|
+
"isolatedModules": true,
|
|
12
13
|
"esModuleInterop": true,
|
|
13
14
|
"sourceMap": true,
|
|
14
15
|
"declaration": false,
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
"moduleResolution": "Bundler",
|
|
17
18
|
"importHelpers": true,
|
|
18
19
|
"target": "ES2022",
|
|
19
|
-
"module": "
|
|
20
|
+
"module": "preserve",
|
|
20
21
|
"useDefineForClassFields": false,
|
|
21
22
|
"lib": [
|
|
22
23
|
"ES2022",
|
|
@@ -11,48 +11,49 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~21.0.0",
|
|
15
|
+
"@angular/common": "~21.0.0",
|
|
16
|
+
"@angular/compiler": "~21.0.0",
|
|
17
|
+
"@angular/core": "~21.0.0",
|
|
18
|
+
"@angular/forms": "~21.0.0",
|
|
19
|
+
"@angular/platform-browser": "~21.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~21.0.0",
|
|
21
|
+
"@angular/router": "~21.0.0",
|
|
22
22
|
"angular-auth-oidc-client": "~15.0.4",
|
|
23
23
|
"hammerjs": "~2.0.8",
|
|
24
|
-
"igniteui-angular": "~
|
|
24
|
+
"igniteui-angular": "~21.0.0",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "~2.8.1",
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular
|
|
32
|
-
"@angular-
|
|
33
|
-
"@angular-eslint/
|
|
34
|
-
"@angular-eslint/eslint-plugin
|
|
35
|
-
"@angular-eslint/
|
|
36
|
-
"@angular-eslint/
|
|
37
|
-
"@angular/
|
|
38
|
-
"@angular/
|
|
39
|
-
"@angular/
|
|
31
|
+
"@angular/build": "~21.0.0",
|
|
32
|
+
"@angular-devkit/build-angular": "~21.0.0",
|
|
33
|
+
"@angular-eslint/builder": "~21.0.1",
|
|
34
|
+
"@angular-eslint/eslint-plugin": "~21.0.1",
|
|
35
|
+
"@angular-eslint/eslint-plugin-template": "~21.0.1",
|
|
36
|
+
"@angular-eslint/schematics": "~21.0.1",
|
|
37
|
+
"@angular-eslint/template-parser": "~21.0.1",
|
|
38
|
+
"@angular/cli": "~21.0.0",
|
|
39
|
+
"@angular/compiler-cli": "~21.0.0",
|
|
40
|
+
"@angular/language-service": "~21.0.0",
|
|
40
41
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
42
|
"@types/hammerjs": "~2.0.46",
|
|
42
43
|
"@types/jasmine": "~5.1.4",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "~8.
|
|
44
|
-
"@typescript-eslint/parser": "~8.
|
|
45
|
-
"eslint": "~9.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "~8.47.0",
|
|
45
|
+
"@typescript-eslint/parser": "~8.47.0",
|
|
46
|
+
"eslint": "~9.39.1",
|
|
46
47
|
"eslint-plugin-import": "^2.32.0",
|
|
47
48
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
48
|
-
"eslint-plugin-unicorn": "^
|
|
49
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
49
50
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
50
|
-
"jasmine-core": "~5.
|
|
51
|
+
"jasmine-core": "~5.12.1",
|
|
51
52
|
"karma": "~6.4.4",
|
|
52
53
|
"karma-chrome-launcher": "~3.2.0",
|
|
53
54
|
"karma-coverage": "~2.2.1",
|
|
54
55
|
"karma-jasmine": "~5.1.0",
|
|
55
56
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
56
|
-
"typescript": "~5.9.
|
|
57
|
+
"typescript": "~5.9.3"
|
|
57
58
|
}
|
|
58
59
|
}
|
package/igx-ts-legacy/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.ts
CHANGED
|
@@ -49,7 +49,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
49
49
|
public earliestSummary = EarliestSummary;
|
|
50
50
|
public soonSummary = SoonSummary;
|
|
51
51
|
|
|
52
|
-
public cols!: QueryList<
|
|
52
|
+
public cols!: QueryList<IgxColumnComponent>;
|
|
53
53
|
public hiddenColsLength: number = 0;
|
|
54
54
|
public pinnedColsLength: number = 0;
|
|
55
55
|
|
|
@@ -16,7 +16,7 @@ export class <%=ClassName%>Component implements OnInit {
|
|
|
16
16
|
this.localData = employeesData;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
public onColumnInit(column:
|
|
19
|
+
public onColumnInit(column: IgxColumnComponent): void {
|
|
20
20
|
if (column.field === 'RegistererDate') {
|
|
21
21
|
column.formatter = (date => date.toLocaleDateString());
|
|
22
22
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Component, ViewChild } from '@angular/core';
|
|
2
2
|
import { IgxDialogComponent, IgxGridComponent, IgxHierarchicalGridComponent,
|
|
3
3
|
IgxRowIslandComponent, Transaction } from '<%=igxPackage%>';
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
import { SINGERS } from './data';
|
|
6
6
|
import { Singer } from './singer';
|
|
7
7
|
|
|
@@ -58,13 +58,13 @@ export class <%=ClassName%>Component {
|
|
|
58
58
|
|
|
59
59
|
public formatter = (a: number): number => a;
|
|
60
60
|
|
|
61
|
-
public undo(grid:
|
|
61
|
+
public undo(grid: IgxHierarchicalGridComponent): void {
|
|
62
62
|
/* exit edit mode */
|
|
63
63
|
grid.crudService.endEdit(/* commit the edit transaction */ false);
|
|
64
64
|
grid.transactions.undo();
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
public redo(grid:
|
|
67
|
+
public redo(grid: IgxHierarchicalGridComponent): void {
|
|
68
68
|
grid.transactions.redo();
|
|
69
69
|
}
|
|
70
70
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"prefix": "app",
|
|
21
21
|
"architect": {
|
|
22
22
|
"build": {
|
|
23
|
-
"builder": "@angular
|
|
23
|
+
"builder": "@angular/build:application",
|
|
24
24
|
"options": {
|
|
25
25
|
"outputPath": "dist/<%=dashName%>",
|
|
26
26
|
"index": "src/index.html",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"defaultConfiguration": "production"
|
|
75
75
|
},
|
|
76
76
|
"serve": {
|
|
77
|
-
"builder": "@angular
|
|
77
|
+
"builder": "@angular/build:dev-server",
|
|
78
78
|
"configurations": {
|
|
79
79
|
"production": {
|
|
80
80
|
"buildTarget": "<%=dashName%>:build:production"
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~21.0.0",
|
|
15
|
+
"@angular/common": "~21.0.0",
|
|
16
|
+
"@angular/compiler": "~21.0.0",
|
|
17
|
+
"@angular/core": "~21.0.0",
|
|
18
|
+
"@angular/forms": "~21.0.0",
|
|
19
|
+
"@angular/platform-browser": "~21.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~21.0.0",
|
|
21
|
+
"@angular/router": "~21.0.0",
|
|
22
22
|
"hammerjs": "~2.0.8",
|
|
23
|
-
"igniteui-angular": "~
|
|
23
|
+
"igniteui-angular": "~21.0.0-alpha.6",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.1",
|
|
26
26
|
"tslib": "~2.8.1",
|
|
@@ -28,34 +28,53 @@
|
|
|
28
28
|
},
|
|
29
29
|
"overrides": {
|
|
30
30
|
"reveal-sdk-wrappers-angular": {
|
|
31
|
-
"@angular/core": "^
|
|
32
|
-
"@angular/common": "^
|
|
31
|
+
"@angular/core": "^21.0.0",
|
|
32
|
+
"@angular/common": "^21.0.0",
|
|
33
|
+
"rxjs": "~7.8.1"
|
|
33
34
|
},
|
|
34
|
-
"
|
|
35
|
+
"igniteui-angular-charts": {
|
|
36
|
+
"@angular/core": "^21.0.0",
|
|
37
|
+
"@angular/common": "^21.0.0",
|
|
38
|
+
"@angular/compiler": "^21.0.0",
|
|
39
|
+
"rxjs": "~7.8.1"
|
|
40
|
+
},
|
|
41
|
+
"igniteui-angular-gauges": {
|
|
42
|
+
"@angular/core": "^21.0.0",
|
|
43
|
+
"@angular/common": "^21.0.0",
|
|
44
|
+
"@angular/compiler": "^21.0.0",
|
|
45
|
+
"rxjs": "~7.8.1"
|
|
46
|
+
},
|
|
47
|
+
"igniteui-angular-maps": {
|
|
48
|
+
"@angular/core": "^21.0.0",
|
|
49
|
+
"@angular/common": "^21.0.0",
|
|
50
|
+
"@angular/compiler": "^21.0.0",
|
|
51
|
+
"rxjs": "~7.8.1"
|
|
52
|
+
}
|
|
35
53
|
},
|
|
36
54
|
"devDependencies": {
|
|
37
|
-
"@angular
|
|
38
|
-
"@angular-
|
|
39
|
-
"@angular-eslint/
|
|
40
|
-
"@angular-eslint/eslint-plugin
|
|
41
|
-
"@angular-eslint/
|
|
42
|
-
"@angular-eslint/
|
|
43
|
-
"@angular/
|
|
44
|
-
"@angular/
|
|
55
|
+
"@angular/build": "~21.0.0",
|
|
56
|
+
"@angular-devkit/build-angular": "~21.0.0",
|
|
57
|
+
"@angular-eslint/builder": "~21.0.1",
|
|
58
|
+
"@angular-eslint/eslint-plugin": "~21.0.1",
|
|
59
|
+
"@angular-eslint/eslint-plugin-template": "~21.0.1",
|
|
60
|
+
"@angular-eslint/schematics": "~21.0.1",
|
|
61
|
+
"@angular-eslint/template-parser": "~21.0.1",
|
|
62
|
+
"@angular/cli": "~21.0.0",
|
|
63
|
+
"@angular/compiler-cli": "~21.0.0",
|
|
45
64
|
"@types/jasmine": "~5.1.4",
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "~8.
|
|
47
|
-
"@typescript-eslint/parser": "~8.
|
|
48
|
-
"eslint": "~9.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "~8.47.0",
|
|
66
|
+
"@typescript-eslint/parser": "~8.47.0",
|
|
67
|
+
"eslint": "~9.39.1",
|
|
49
68
|
"eslint-plugin-import": "^2.32.0",
|
|
50
69
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
51
|
-
"eslint-plugin-unicorn": "^
|
|
70
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
52
71
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
53
|
-
"jasmine-core": "~5.
|
|
72
|
+
"jasmine-core": "~5.12.1",
|
|
54
73
|
"karma": "~6.4.4",
|
|
55
74
|
"karma-chrome-launcher": "~3.2.0",
|
|
56
75
|
"karma-coverage": "~2.2.1",
|
|
57
76
|
"karma-jasmine": "~5.1.0",
|
|
58
77
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
59
|
-
"typescript": "~5.9.
|
|
78
|
+
"typescript": "~5.9.3"
|
|
60
79
|
}
|
|
61
80
|
}
|
|
@@ -5,16 +5,21 @@
|
|
|
5
5
|
"baseUrl": "./",
|
|
6
6
|
"outDir": "./dist/out-tsc",
|
|
7
7
|
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"noImplicitOverride": true,
|
|
9
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
10
|
+
"noImplicitReturns": true,
|
|
11
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
12
|
"skipLibCheck": true,
|
|
13
|
+
"isolatedModules": true,
|
|
9
14
|
"strict": true,
|
|
10
15
|
"sourceMap": true,
|
|
11
16
|
"declaration": false,
|
|
12
17
|
"downlevelIteration": true,
|
|
13
18
|
"experimentalDecorators": true,
|
|
14
|
-
"moduleResolution": "
|
|
19
|
+
"moduleResolution": "Bundler",
|
|
15
20
|
"importHelpers": true,
|
|
16
21
|
"target": "ES2022",
|
|
17
|
-
"module": "
|
|
22
|
+
"module": "preserve",
|
|
18
23
|
"useDefineForClassFields": false,
|
|
19
24
|
"lib": [
|
|
20
25
|
"ES2022",
|
|
@@ -11,49 +11,50 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~21.0.0",
|
|
15
|
+
"@angular/common": "~21.0.0",
|
|
16
|
+
"@angular/compiler": "~21.0.0",
|
|
17
|
+
"@angular/core": "~21.0.0",
|
|
18
|
+
"@angular/forms": "~21.0.0",
|
|
19
|
+
"@angular/platform-browser": "~21.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~21.0.0",
|
|
21
|
+
"@angular/router": "~21.0.0",
|
|
22
22
|
"angular-auth-oidc-client": "~15.0.4",
|
|
23
23
|
"hammerjs": "~2.0.8",
|
|
24
|
-
"igniteui-angular": "~
|
|
24
|
+
"igniteui-angular": "~21.0.0",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "~2.8.1",
|
|
28
28
|
"zone.js": "~0.15.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular
|
|
32
|
-
"@angular-
|
|
33
|
-
"@angular-eslint/
|
|
34
|
-
"@angular-eslint/eslint-plugin
|
|
35
|
-
"@angular-eslint/
|
|
36
|
-
"@angular-eslint/
|
|
37
|
-
"@angular/
|
|
38
|
-
"@angular/
|
|
39
|
-
"@angular/
|
|
31
|
+
"@angular/build": "~21.0.0",
|
|
32
|
+
"@angular-devkit/build-angular": "~21.0.0",
|
|
33
|
+
"@angular-eslint/builder": "~21.0.1",
|
|
34
|
+
"@angular-eslint/eslint-plugin": "~21.0.1",
|
|
35
|
+
"@angular-eslint/eslint-plugin-template": "~21.0.1",
|
|
36
|
+
"@angular-eslint/schematics": "~21.0.1",
|
|
37
|
+
"@angular-eslint/template-parser": "~21.0.1",
|
|
38
|
+
"@angular/cli": "~21.0.0",
|
|
39
|
+
"@angular/compiler-cli": "~21.0.0",
|
|
40
|
+
"@angular/language-service": "~21.0.0",
|
|
40
41
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
42
|
"@types/hammerjs": "~2.0.41",
|
|
42
43
|
"@types/jasmine": "~5.1.4",
|
|
43
44
|
"@types/jasminewd2": "~2.0.3",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "~8.
|
|
45
|
-
"@typescript-eslint/parser": "~8.
|
|
46
|
-
"eslint": "~9.
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "~8.47.0",
|
|
46
|
+
"@typescript-eslint/parser": "~8.47.0",
|
|
47
|
+
"eslint": "~9.39.1",
|
|
47
48
|
"eslint-plugin-import": "^2.32.0",
|
|
48
49
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
49
|
-
"eslint-plugin-unicorn": "^
|
|
50
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
50
51
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
51
|
-
"jasmine-core": "~5.
|
|
52
|
+
"jasmine-core": "~5.12.1",
|
|
52
53
|
"karma": "~6.4.4",
|
|
53
54
|
"karma-chrome-launcher": "~3.2.0",
|
|
54
55
|
"karma-coverage": "~2.2.1",
|
|
55
56
|
"karma-jasmine": "~5.1.0",
|
|
56
57
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
57
|
-
"typescript": "~5.9.
|
|
58
|
+
"typescript": "~5.9.3"
|
|
58
59
|
}
|
|
59
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.1480-beta.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": "~
|
|
15
|
+
"@igniteui/cli-core": "~14.8.0-beta.0",
|
|
16
16
|
"typescript": "~5.5.4"
|
|
17
17
|
}
|
|
18
18
|
}
|