Skip to content

Commit

Permalink
feat: angular 19 support
Browse files Browse the repository at this point in the history
feat: major version bump
  • Loading branch information
steveblue committed Jan 31, 2025
1 parent 9f94397 commit fd36cf0
Show file tree
Hide file tree
Showing 99 changed files with 12,714 additions and 18,773 deletions.
14 changes: 9 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ngx-charts",
"outputPath": {
"base": "dist/ngx-charts"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
Expand All @@ -32,7 +35,8 @@
"extractLicenses": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## HEAD (unreleased)

- Enhancement: Support Angular 19, `standalone` now required in all `@Component`
- Enhancement: Update SASS and update for latest standard libraries

## 21.1.3

- Fix: Fixed a bug where the mask ID for percent gauge chart would be regenerated on each update
Expand Down
Loading

0 comments on commit fd36cf0

Please sign in to comment.