Skip to content

Commit

Permalink
upgrade to Angular 13
Browse files Browse the repository at this point in the history
  • Loading branch information
ckyycc committed Aug 7, 2022
1 parent 2de5032 commit c638d47
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 40 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![npm](https://img.shields.io/npm/v/ngx-selection-table.svg?style=flat-square)](https://www.npmjs.com/package/ngx-selection-table) [![npm downloads](https://img.shields.io/npm/dm/ngx-selection-table.svg)](https://www.npmjs.com/package/ngx-selection-table) [![Travis](https://img.shields.io/travis/ckyycc/ngx-selection-table.svg?style=flat-square)](https://travis-ci.org/ckyycc/ngx-selection-table) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/ckyycc/ngx-selection-table/blob/master/LICENSE)

An Angular 7 module for selecting data from table with checkbox, filter and collapsible/expandable sub title.\
For Angular 6 support please use older versions.
An Angular 13 module for selecting data from table with checkbox, filter and collapsible/expandable sub title.\
For Angular 6 / 7 support please use older versions.

## Installation
```bash
Expand Down Expand Up @@ -85,7 +85,7 @@ Search String | Search Style | Result

Todo
----
* ~~Support Angular 7~~
* ~~Support Angular 13~~
* ...

## License
Expand Down
3 changes: 1 addition & 2 deletions ng-package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"$ schema": "./node_modules/ng-packagr/ng-package.schema.json",
"whitelistedNonPeerDependencies": ["."],
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib":{
"entryFile": "public_api.ts"
}
Expand Down
66 changes: 31 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-selection-table",
"version": "1.1.1",
"version": "1.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down Expand Up @@ -30,41 +30,37 @@
"url": "https://github.com/ckyycc/ngx-selection-table/issues"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "^7.0.0",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"angular-cli-ghpages": "^0.5.3",
"codelyzer": "^4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^4.3.1",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "^0.34.0",
"tslib": "^1.9.0",
"tslint": "^5.11.0",
"typescript": ">=3.1.1 <3.2",
"zone.js": "^0.8.26"
"@angular-devkit/build-angular": "13.3.9",
"@angular/cli": "^13.3.9",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/compiler-cli": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@types/jasmine": "~3.10.6",
"@types/jasminewd2": "~2.0.10",
"@types/node": "17.0.38",
"angular-cli-ghpages": "^1.0.3",
"codelyzer": "^6.0.2",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.18",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^13.3.1",
"ts-node": "^10.7.0",
"tslib": "^2.1.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@angular/common": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"zone.js": "^0.8.26"
"@angular/common": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/platform-browser": "^13.3.9",
"zone.js": "^0.11.5"
}
}

0 comments on commit c638d47

Please sign in to comment.