Skip to content
This repository was archived by the owner on Aug 19, 2024. It is now read-only.

Commit ff02c2d

Browse files
committed
Update fw examples
1 parent ba791f8 commit ff02c2d

File tree

2 files changed

+20
-23
lines changed

2 files changed

+20
-23
lines changed

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,31 @@
1919
},
2020
"private": true,
2121
"dependencies": {
22-
"@angular/animations": "6.0.9",
23-
"@angular/common": "6.0.9",
24-
"@angular/compiler": "6.0.9",
25-
"@angular/compiler-cli": "6.0.9",
26-
"@angular/core": "6.0.9",
27-
"@angular/forms": "6.0.9",
28-
"@angular/http": "6.0.9",
29-
"@angular/platform-browser": "6.0.9",
30-
"@angular/platform-browser-dynamic": "6.0.9",
31-
"@angular/platform-server": "6.0.9",
32-
"@angular/router": "6.0.9",
22+
"@angular/animations": "6.1.6",
23+
"@angular/common": "6.1.6",
24+
"@angular/compiler": "6.1.6",
25+
"@angular/compiler-cli": "6.1.6",
26+
"@angular/core": "6.1.6",
27+
"@angular/forms": "6.1.6",
28+
"@angular/http": "6.1.6",
29+
"@angular/platform-browser": "6.1.6",
30+
"@angular/platform-browser-dynamic": "6.1.6",
31+
"@angular/platform-server": "6.1.6",
32+
"@angular/router": "6.1.6",
3333
"ag-grid-community": "^18.1.1",
3434
"ag-grid-angular": "^18.1.0",
3535
"ag-grid-enterprise": "^18.1.1",
3636
"bootstrap": "3.3.7",
3737
"core-js": "2.5.7",
38-
"rxjs": "6.2.2",
38+
"rxjs": "6.3.1",
3939
"zone.js": "0.8.26"
4040
},
4141
"devDependencies": {
42-
"@angular-devkit/build-angular": "0.6.8",
43-
"@angular/cli": "6.0.8",
42+
"@angular-devkit/build-angular": "0.7.5",
43+
"@angular/cli": "6.1.5",
4444
"@types/jasmine": "2.5.54",
4545
"@types/node": "6.0.107",
46-
"codelyzer": "3.2.2",
46+
"codelyzer": "4.4.4",
4747
"del": "2.2.x",
4848
"http-server": "0.9.x",
4949
"jasmine-core": "2.6.4",
@@ -58,7 +58,7 @@
5858
"run-sequence": "1.2.x",
5959
"ts-node": "3.2.2",
6060
"tslint": "5.7.0",
61-
"typescript": "2.7.2",
61+
"typescript": "2.9.2",
6262
"webdriver-manager": "10.2.5"
6363
}
64-
}
64+
}

src/app/rich-grid-example/rich-grid.component.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ <h1>Rich Grid Example</h1>
3434
<div style="clear: both;"></div>
3535
<div style="padding: 4px;" class="toolbar">
3636
<label>
37-
<input type="checkbox" (change)="showToolPanel=$event.target.checked"/>
38-
Show Tool Panel
37+
<input type="checkbox" (change)="sideBar=$event.target.checked"/>
38+
Show Side Bar
3939
</label>
4040
<button (click)="createRowData()">Refresh Data</button>
4141
</div>
@@ -45,16 +45,13 @@ <h1>Rich Grid Example</h1>
4545

4646
[gridOptions]="gridOptions"
4747
[columnDefs]="columnDefs"
48-
[showToolPanel]="showToolPanel"
48+
[sideBar]="sideBar"
4949
[rowData]="rowData"
5050

5151
enableColResize
5252
enableSorting
5353
enableFilter
54-
groupHeaders
5554
suppressRowClickSelection
56-
toolPanelSuppressGroups
57-
toolPanelSuppressValues
5855
rowSelection="multiple"
5956

6057
(modelUpdated)="onModelUpdated()"

0 commit comments

Comments
 (0)