Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 20908e9

Browse files
authored
Upgrade to Angular 16 (#1269)
* upgrade tsconfig settings * remove flex layout * fix import path * convert demo to standalone component * update readme * remove unused libs * upgrade angular to 16 * material 16 * bump version to 6.0.0
1 parent 119fe92 commit 20908e9

File tree

11 files changed

+4942
-3276
lines changed

11 files changed

+4942
-3276
lines changed

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ that powers [VS Code](https://github.com/Microsoft/vscode).
99
<img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="51" width="217">
1010
</a>
1111

12-
## Live demos
13-
14-
- [Angular 6](https://stackblitz.com/edit/ngstack-code-editor-ng6)
15-
1612
## Installing
1713

1814
```sh
@@ -39,13 +35,7 @@ export class AppModule {}
3935
Update template to use the `ngs-code-editor`:
4036

4137
```html
42-
<ngs-code-editor
43-
[theme]="theme"
44-
[codeModel]="model"
45-
[options]="options"
46-
(valueChanged)="onCodeChanged($event)"
47-
>
48-
</ngs-code-editor>
38+
<ngs-code-editor [theme]="theme" [codeModel]="model" [options]="options" (valueChanged)="onCodeChanged($event)"></ngs-code-editor>
4939
```
5040

5141
Update component controller class and provide corresponding properties and events:

0 commit comments

Comments
 (0)