@igniteui/angular-templates 15.1.1112-alpha.2 → 16.0.1200-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.
@@ -9,7 +9,7 @@
9
9
  [batchEditing]="true" [rowEditable]="true">
10
10
  <igx-column width="135px">
11
11
  <ng-template igxCell let-cell="cell" let-val>
12
- <button igxButton (click)="deleteRow(cell.id.rowID)" [disabled]="cell.row.deleted">Delete</button>
12
+ <button igxButton (click)="deleteRow(cell.id?.rowID)" [disabled]="cell.row.deleted">Delete</button>
13
13
  </ng-template>
14
14
  </igx-column>
15
15
  <igx-column width="60px" field="ProductID" header="Product ID"></igx-column>
@@ -19,7 +19,7 @@
19
19
  <igx-column field="GrammyAwards" header="Grammy Awards" [editable]="true" dataType="number"></igx-column>
20
20
  <igx-column width="150px" [editable]="false">
21
21
  <ng-template igxCell let-cell="cell" let-val>
22
- <button igxButton (click)="removeRow(cell.id.rowIndex)"
22
+ <button igxButton (click)="removeRow(cell.id ? cell.id.rowIndex : -1)"
23
23
  [disabled]="cell.row.deleted">Delete</button>
24
24
  </ng-template>
25
25
  </igx-column>
@@ -70,7 +70,7 @@ export class <%=ClassName%>Component {
70
70
  public commit(): void {
71
71
  this.hierarchicalGrid.transactions.commit(this.localdata);
72
72
  this.layout1.gridAPI.getChildGrids().forEach((grid) => {
73
- grid.transactions.commit(grid.data);
73
+ grid.transactions.commit(grid.data as any[]);
74
74
  });
75
75
  this.dialogChanges.close();
76
76
  }
@@ -5,48 +5,49 @@
5
5
  "ng": "ng",
6
6
  "start": "ng serve -o",
7
7
  "build": "ng build --configuration production",
8
+ "watch": "ng build --watch --configuration development",
8
9
  "test": "ng test",
9
10
  "lint": "ng lint"
10
11
  },
11
12
  "private": true,
12
13
  "dependencies": {
13
- "@angular/animations": "~15.2.0",
14
- "@angular/common": "~15.2.0",
15
- "@angular/compiler": "~15.2.0",
16
- "@angular/core": "~15.2.0",
17
- "@angular/forms": "~15.2.0",
18
- "@angular/platform-browser": "~15.2.0",
19
- "@angular/platform-browser-dynamic": "~15.2.0",
20
- "@angular/router": "~15.2.0",
14
+ "@angular/animations": "~16.0.0",
15
+ "@angular/common": "~16.0.0",
16
+ "@angular/compiler": "~16.0.0",
17
+ "@angular/core": "~16.0.0",
18
+ "@angular/forms": "~16.0.0",
19
+ "@angular/platform-browser": "~16.0.0",
20
+ "@angular/platform-browser-dynamic": "~16.0.0",
21
+ "@angular/router": "~16.0.0",
21
22
  "hammerjs": "^2.0.8",
22
- "igniteui-angular": "~15.1.0",
23
- "minireset.css": "~0.0.4",
24
- "rxjs": "~7.5.0",
23
+ "igniteui-angular": "~16.0.0-beta.2",
24
+ "minireset.css": "~0.0.7",
25
+ "rxjs": "~7.8.0",
25
26
  "tslib": "^2.3.0",
26
- "zone.js": "~0.12.0"
27
+ "zone.js": "~0.13.0"
27
28
  },
28
29
  "devDependencies": {
29
- "@angular-devkit/build-angular": "~15.2.0",
30
- "@angular-eslint/builder": "^15.2.0",
31
- "@angular-eslint/eslint-plugin": "^15.2.0",
32
- "@angular-eslint/eslint-plugin-template": "^15.2.0",
33
- "@angular-eslint/schematics": "^15.2.0",
34
- "@angular-eslint/template-parser": "^15.2.0",
35
- "@angular/cli": "~15.2.0",
36
- "@angular/compiler-cli": "~15.2.0",
30
+ "@angular-devkit/build-angular": "~16.0.0",
31
+ "@angular-eslint/builder": "^16.0.0",
32
+ "@angular-eslint/eslint-plugin": "^16.0.0",
33
+ "@angular-eslint/eslint-plugin-template": "^16.0.0",
34
+ "@angular-eslint/schematics": "^16.0.0",
35
+ "@angular-eslint/template-parser": "^16.0.0",
36
+ "@angular/cli": "~16.0.0",
37
+ "@angular/compiler-cli": "~16.0.0",
37
38
  "@types/jasmine": "~4.3.0",
38
- "@types/node": "^18.14.0",
39
- "@typescript-eslint/eslint-plugin": "5.3.0",
40
- "@typescript-eslint/parser": "5.3.0",
41
- "eslint": "^8.1.0",
39
+ "@types/node": "^18.16.0",
40
+ "@typescript-eslint/eslint-plugin": "5.59.2",
41
+ "@typescript-eslint/parser": "5.59.2",
42
+ "eslint": "^8.39.0",
42
43
  "igniteui-cli": "~<%=cliVersion%>",
43
- "jasmine-core": "~4.5.0",
44
+ "jasmine-core": "~4.6.0",
44
45
  "karma": "~6.4.0",
45
- "karma-chrome-launcher": "~3.1.0",
46
+ "karma-chrome-launcher": "~3.2.0",
46
47
  "karma-coverage": "~2.2.0",
47
48
  "karma-jasmine": "~5.1.0",
48
49
  "karma-jasmine-html-reporter": "~2.0.0",
49
- "ts-node": "~9.1.1",
50
- "typescript": "~4.9.5"
50
+ "ts-node": "~10.9.1",
51
+ "typescript": "~5.0.4"
51
52
  }
52
53
  }
@@ -0,0 +1,3 @@
1
+ <div class="outer-wrapper">
2
+ <router-outlet></router-outlet>
3
+ </div>
@@ -0,0 +1,5 @@
1
+ .outer-wrapper {
2
+ display: flex;
3
+ justify-content: center;
4
+ height: 100%;
5
+ }
@@ -0,0 +1,10 @@
1
+ import { Component } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: 'app-root',
5
+ templateUrl: './app.component.html',
6
+ styleUrls: ['./app.component.scss']
7
+ })
8
+ export class AppComponent {
9
+ title = 'Home - IgniteUI for Angular';
10
+ }
@@ -0,0 +1,21 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { BrowserModule, HammerModule } from '@angular/platform-browser';
3
+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
4
+ import { AppRoutingModule } from './app-routing.module';
5
+ import { AppComponent } from './app.component';
6
+
7
+ @NgModule({
8
+ declarations: [
9
+ AppComponent,
10
+ ],
11
+ imports: [
12
+ BrowserModule,
13
+ HammerModule,
14
+ AppRoutingModule,
15
+ BrowserAnimationsModule
16
+ ],
17
+ providers: [],
18
+ bootstrap: [AppComponent]
19
+ })
20
+ export class AppModule {
21
+ }
@@ -2,10 +2,6 @@
2
2
  {
3
3
  "extends": "./tsconfig.json",
4
4
  "compilerOptions": {
5
- "lib": [
6
- "es2019",
7
- "dom"
8
- ],
9
5
  "outDir": "./out-tsc/app",
10
6
  "types": []
11
7
  },
@@ -6,19 +6,17 @@
6
6
  "outDir": "./dist/out-tsc",
7
7
  "forceConsistentCasingInFileNames": true,
8
8
  "strict": false,
9
- "noImplicitReturns": true,
10
- "noFallthroughCasesInSwitch": true,
11
9
  "sourceMap": true,
12
10
  "declaration": false,
13
11
  "downlevelIteration": true,
14
12
  "experimentalDecorators": true,
15
13
  "moduleResolution": "node",
16
14
  "importHelpers": true,
17
- "target": "ES2020",
18
- "module": "ES2020",
15
+ "target": "ES2022",
16
+ "module": "ES2022",
19
17
  "useDefineForClassFields": false,
20
18
  "lib": [
21
- "ES2020",
19
+ "ES2022",
22
20
  "dom"
23
21
  ]
24
22
  },
@@ -10,48 +10,48 @@
10
10
  },
11
11
  "private": true,
12
12
  "dependencies": {
13
- "@angular/animations": "~15.2.0",
14
- "@angular/common": "~15.2.0",
15
- "@angular/compiler": "~15.2.0",
16
- "@angular/core": "~15.2.0",
17
- "@angular/forms": "~15.2.0",
18
- "@angular/platform-browser": "~15.2.0",
19
- "@angular/platform-browser-dynamic": "~15.2.0",
20
- "@angular/router": "~15.2.0",
21
- "angular-auth-oidc-client": "^9.0.3",
13
+ "@angular/animations": "~16.0.0",
14
+ "@angular/common": "~16.0.0",
15
+ "@angular/compiler": "~16.0.0",
16
+ "@angular/core": "~16.0.0",
17
+ "@angular/forms": "~16.0.0",
18
+ "@angular/platform-browser": "~16.0.0",
19
+ "@angular/platform-browser-dynamic": "~16.0.0",
20
+ "@angular/router": "~16.0.0",
21
+ "angular-auth-oidc-client": "^15.0.4",
22
22
  "hammerjs": "^2.0.8",
23
- "igniteui-angular": "~15.1.0",
24
- "minireset.css": "~0.0.4",
25
- "rxjs": "~7.5.0",
26
- "tslib": "^2.4.0",
27
- "zone.js": "~0.12.0"
23
+ "igniteui-angular": "~16.0.0-beta.2",
24
+ "minireset.css": "~0.0.7",
25
+ "rxjs": "~7.8.0",
26
+ "tslib": "^2.3.0",
27
+ "zone.js": "~0.13.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@angular-devkit/build-angular": "~15.2.0",
31
- "@angular-eslint/builder": "^15.2.0",
32
- "@angular-eslint/eslint-plugin": "^15.2.0",
33
- "@angular-eslint/eslint-plugin-template": "^15.2.0",
34
- "@angular-eslint/schematics": "^15.2.0",
35
- "@angular-eslint/template-parser": "^15.2.0",
36
- "@angular/cli": "~15.2.0",
37
- "@angular/compiler-cli": "~15.2.0",
38
- "@angular/language-service": "~15.2.0",
39
- "@types/facebook-js-sdk": "^2.8.6",
40
- "@types/hammerjs": "^2.0.35",
30
+ "@angular-devkit/build-angular": "~16.0.0",
31
+ "@angular-eslint/builder": "^16.0.0",
32
+ "@angular-eslint/eslint-plugin": "^16.0.0",
33
+ "@angular-eslint/eslint-plugin-template": "^16.0.0",
34
+ "@angular-eslint/schematics": "^16.0.0",
35
+ "@angular-eslint/template-parser": "^16.0.0",
36
+ "@angular/cli": "~16.0.0",
37
+ "@angular/compiler-cli": "~16.0.0",
38
+ "@angular/language-service": "~16.0.0",
39
+ "@types/facebook-js-sdk": "^3.3.6",
40
+ "@types/hammerjs": "^2.0.41",
41
41
  "@types/jasmine": "~4.3.0",
42
42
  "@types/jasminewd2": "~2.0.3",
43
- "@types/node": "^18.14.0",
44
- "@typescript-eslint/eslint-plugin": "5.3.0",
45
- "@typescript-eslint/parser": "5.3.0",
46
- "eslint": "^8.1.0",
43
+ "@types/node": "^18.16.0",
44
+ "@typescript-eslint/eslint-plugin": "5.59.2",
45
+ "@typescript-eslint/parser": "5.59.2",
46
+ "eslint": "^8.39.0",
47
47
  "igniteui-cli": "~<%=cliVersion%>",
48
- "jasmine-core": "~4.5.0",
48
+ "jasmine-core": "~4.6.0",
49
49
  "karma": "~6.4.0",
50
- "karma-chrome-launcher": "~3.1.0",
50
+ "karma-chrome-launcher": "~3.2.0",
51
51
  "karma-coverage": "~2.2.0",
52
52
  "karma-jasmine": "~5.1.0",
53
53
  "karma-jasmine-html-reporter": "~2.0.0",
54
- "ts-node": "~9.1.1",
55
- "typescript": "~4.9.5"
54
+ "ts-node": "~10.9.1",
55
+ "typescript": "~5.0.4"
56
56
  }
57
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "15.1.1112-alpha.2",
3
+ "version": "16.0.1200-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": "~11.1.2-alpha.2",
15
+ "@igniteui/cli-core": "~12.0.0-beta.0",
16
16
  "typescript": "~4.7.2"
17
17
  }
18
18
  }