Skip to content

Commit

Permalink
Update to 14.0.0
Browse files Browse the repository at this point in the history
- ng generate @angular/core:control-flow
- fix build
- fix versions
- update demo
  • Loading branch information
Zefling committed Jan 7, 2024
1 parent 909717c commit 7995f27
Show file tree
Hide file tree
Showing 40 changed files with 333 additions and 294 deletions.
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"arrowParens": "avoid",
"trailingComma": "all",
"bracketSpacing": true,
"importOrderParserPlugins": ["typescript", "decorators-legacy"],
"importOrder": ["^@angular/", "^[@]", "^(?!src|[.])", "^[^.]", "^[.]/", "^[..]/", ".*"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"overrides": [
{
"files": "*.json",
Expand Down
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "pwa-chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"cSpell.words": [],
"editor.formatOnType": true
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog of ng-select2

## V14.0.0 (2024-01-XX)

### Breaking Changes

- minimum required support has been upgraded to Angular `17.0`.

## V13.0.9 (2023-09-24)

- add `autoCreate` for single mode #56 (thanks @majora2007)
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ npm i ng-select2-component --save

- peerDependencies:

- `angular` 16.1.0 and more
- `angular/cdk` 16.1.0 and more
- `angular` 17.0.0 and more
- `angular/cdk` 17.0.0 and more

- dependencies (include):
- `ngx-infinite-scroll` 16.0.0 and more
- `ngx-infinite-scroll` 17.0.0 and more

> **Note:**<br>
>
Expand All @@ -29,6 +29,7 @@ npm i ng-select2-component --save
> - For `angular` 15 (Ivy): use version `11.0.0`.
> - For `angular` 16 and more (Ivy): use version `12.0.0`.
> - For `angular` 16.1 and more (Ivy): use version `13.0.0`.
> - For `angular` 17 and more (Ivy): use version `14.0.0`.
## Demo

Expand Down
1 change: 0 additions & 1 deletion dist/ng-select2/266.1835834e96094759.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/ng-select2/266.296de3a69996bf2b.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7995f27

Please sign in to comment.