-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update yarn * temp * temp 2 * ng update @angular/material@18 * ng update @angular/material@18 * Specify Node 20 * Update other deps * Set Node version with nvmrc * Material Design 3 * Changes: - Refactored tooltips from custom impl to AM, removed custom impl - Use system preference dark/light mode - Generated and added AM theme instead of using a default one - Customised some colors to get nicer background colors - Use SASS instead of LESS
- Loading branch information
Showing
12 changed files
with
3,762 additions
and
4,055 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v20.17.0 |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
{ | ||
"name": "timeline-tools", | ||
"version": "0.0.0", | ||
"engines": { | ||
"node": "20" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "ng serve -o", | ||
"ng": "ng", | ||
"heroku-prebuild": "npm install -g @angular/cli http-server", | ||
"heroku-postbuild": "ng build --configuration production && cp dist/timeline-tools/* .", | ||
"serve": "ng serve", | ||
"start": "http-server", | ||
"startprod": "ng serve -o --configuration production", | ||
|
@@ -24,16 +26,16 @@ | |
} | ||
}, | ||
"dependencies": { | ||
"@angular/animations": "17.3.11", | ||
"@angular/cdk": "^17.0.5", | ||
"@angular/common": "17.3.11", | ||
"@angular/compiler": "17.3.11", | ||
"@angular/core": "17.3.11", | ||
"@angular/forms": "17.3.11", | ||
"@angular/material": "^17.0.5", | ||
"@angular/platform-browser": "17.3.11", | ||
"@angular/platform-browser-dynamic": "17.3.11", | ||
"@angular/router": "17.3.11", | ||
"@angular/animations": "18.2.3", | ||
"@angular/cdk": "^18.2.3", | ||
"@angular/common": "18.2.3", | ||
"@angular/compiler": "18.2.3", | ||
"@angular/core": "18.2.3", | ||
"@angular/forms": "18.2.3", | ||
"@angular/material": "^18.2.3", | ||
"@angular/platform-browser": "18.2.3", | ||
"@angular/platform-browser-dynamic": "18.2.3", | ||
"@angular/router": "18.2.3", | ||
"lodash-es": "4.17.21", | ||
"moment": "2.30.1", | ||
"normalize.css": "8.0.1", | ||
|
@@ -42,17 +44,18 @@ | |
"timers": "0.1.1", | ||
"ts-md5": "1.3.1", | ||
"tslib": "2.6.3", | ||
"zone.js": "^0.14.3" | ||
"zone.js": "^0.14.10" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "^17.0.10", | ||
"@angular-eslint/builder": "17.5.2", | ||
"@angular-eslint/eslint-plugin": "17.5.2", | ||
"@angular-eslint/eslint-plugin-template": "17.5.2", | ||
"@angular-eslint/template-parser": "17.5.2", | ||
"@angular/cli": "17.3.8", | ||
"@angular/compiler-cli": "17.3.11", | ||
"@angular/language-service": "17.3.11", | ||
"@angular-devkit/build-angular": "^18.2.3", | ||
"@angular-eslint/builder": "^18.3.0", | ||
"@angular-eslint/eslint-plugin": "^18.3.0", | ||
"@angular-eslint/eslint-plugin-template": "^18.3.0", | ||
"@angular-eslint/schematics": "^18.3.0", | ||
"@angular-eslint/template-parser": "^18.3.0", | ||
"@angular/cli": "^18.2.3", | ||
"@angular/compiler-cli": "18.2.3", | ||
"@angular/language-service": "18.2.3", | ||
"@playwright/test": "1.45.1", | ||
"@types/jasmine": "5.1.4", | ||
"@types/jquery": "3.5.30", | ||
|
@@ -73,6 +76,5 @@ | |
"ts-node": "10.9.2", | ||
"tsconfig-paths": "4.2.0", | ||
"typescript": "5.4.5" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.