@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.
- package/igx-ts/grid/grid-batch-editing/files/src/app/__path__/__filePrefix__.component.html +1 -1
- package/igx-ts/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.html +1 -1
- package/igx-ts/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.ts +1 -1
- package/igx-ts/projects/_base/files/package.json +29 -28
- package/igx-ts/projects/_base/files/src/app/app.component.html +3 -0
- package/igx-ts/projects/_base/files/src/app/app.component.scss +5 -0
- package/igx-ts/projects/_base/files/src/app/app.component.ts +10 -0
- package/igx-ts/projects/_base/files/src/app/app.module.ts +21 -0
- package/igx-ts/projects/_base/files/tsconfig.app.json +0 -4
- package/igx-ts/projects/_base/files/tsconfig.json +3 -5
- package/igx-ts/projects/side-nav-auth/files/package.json +33 -33
- package/package.json +2 -2
|
@@ -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
|
|
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": "~
|
|
14
|
-
"@angular/common": "~
|
|
15
|
-
"@angular/compiler": "~
|
|
16
|
-
"@angular/core": "~
|
|
17
|
-
"@angular/forms": "~
|
|
18
|
-
"@angular/platform-browser": "~
|
|
19
|
-
"@angular/platform-browser-dynamic": "~
|
|
20
|
-
"@angular/router": "~
|
|
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": "~
|
|
23
|
-
"minireset.css": "~0.0.
|
|
24
|
-
"rxjs": "~7.
|
|
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.
|
|
27
|
+
"zone.js": "~0.13.0"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@angular-devkit/build-angular": "~
|
|
30
|
-
"@angular-eslint/builder": "^
|
|
31
|
-
"@angular-eslint/eslint-plugin": "^
|
|
32
|
-
"@angular-eslint/eslint-plugin-template": "^
|
|
33
|
-
"@angular-eslint/schematics": "^
|
|
34
|
-
"@angular-eslint/template-parser": "^
|
|
35
|
-
"@angular/cli": "~
|
|
36
|
-
"@angular/compiler-cli": "~
|
|
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.
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
40
|
-
"@typescript-eslint/parser": "5.
|
|
41
|
-
"eslint": "^8.
|
|
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.
|
|
44
|
+
"jasmine-core": "~4.6.0",
|
|
44
45
|
"karma": "~6.4.0",
|
|
45
|
-
"karma-chrome-launcher": "~3.
|
|
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
|
|
50
|
-
"typescript": "~
|
|
50
|
+
"ts-node": "~10.9.1",
|
|
51
|
+
"typescript": "~5.0.4"
|
|
51
52
|
}
|
|
52
53
|
}
|
|
@@ -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
|
+
}
|
|
@@ -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": "
|
|
18
|
-
"module": "
|
|
15
|
+
"target": "ES2022",
|
|
16
|
+
"module": "ES2022",
|
|
19
17
|
"useDefineForClassFields": false,
|
|
20
18
|
"lib": [
|
|
21
|
-
"
|
|
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": "~
|
|
14
|
-
"@angular/common": "~
|
|
15
|
-
"@angular/compiler": "~
|
|
16
|
-
"@angular/core": "~
|
|
17
|
-
"@angular/forms": "~
|
|
18
|
-
"@angular/platform-browser": "~
|
|
19
|
-
"@angular/platform-browser-dynamic": "~
|
|
20
|
-
"@angular/router": "~
|
|
21
|
-
"angular-auth-oidc-client": "^
|
|
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": "~
|
|
24
|
-
"minireset.css": "~0.0.
|
|
25
|
-
"rxjs": "~7.
|
|
26
|
-
"tslib": "^2.
|
|
27
|
-
"zone.js": "~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": "~
|
|
31
|
-
"@angular-eslint/builder": "^
|
|
32
|
-
"@angular-eslint/eslint-plugin": "^
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "^
|
|
34
|
-
"@angular-eslint/schematics": "^
|
|
35
|
-
"@angular-eslint/template-parser": "^
|
|
36
|
-
"@angular/cli": "~
|
|
37
|
-
"@angular/compiler-cli": "~
|
|
38
|
-
"@angular/language-service": "~
|
|
39
|
-
"@types/facebook-js-sdk": "^
|
|
40
|
-
"@types/hammerjs": "^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",
|
|
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.
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
45
|
-
"@typescript-eslint/parser": "5.
|
|
46
|
-
"eslint": "^8.
|
|
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.
|
|
48
|
+
"jasmine-core": "~4.6.0",
|
|
49
49
|
"karma": "~6.4.0",
|
|
50
|
-
"karma-chrome-launcher": "~3.
|
|
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
|
|
55
|
-
"typescript": "~
|
|
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": "
|
|
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": "~
|
|
15
|
+
"@igniteui/cli-core": "~12.0.0-beta.0",
|
|
16
16
|
"typescript": "~4.7.2"
|
|
17
17
|
}
|
|
18
18
|
}
|