Skip to content

Commit 6e83cb9

Browse files
committed
Angular 19.2 and all JS deps #10723
1 parent 2a68fb1 commit 6e83cb9

File tree

4 files changed

+1525
-1452
lines changed

4 files changed

+1525
-1452
lines changed

eslint.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,14 @@ export default tseslint.config(
154154
extends: [...angular.configs.templateAll],
155155
rules: {
156156
'@angular-eslint/template/alt-text': 'off', // We don't care as much as we should about a11y
157-
'@angular-eslint/template/attributes-order': 'off', // TODO: We want to enable this, but autofix mess up our code, and it's too much manual changes
158157
'@angular-eslint/template/button-has-type': 'off',
159158
'@angular-eslint/template/click-events-have-key-events': 'off', // We don't care as much as we should about a11y
160159
'@angular-eslint/template/i18n': 'off',
161160
'@angular-eslint/template/interactive-supports-focus': 'off', // We don't care as much as we should about a11y
162161
'@angular-eslint/template/label-has-associated-control': 'off', // We don't care as much as we should about a11y
163162
'@angular-eslint/template/no-autofocus': 'off',
164163
'@angular-eslint/template/no-call-expression': 'off',
165-
'@angular-eslint/template/no-inline-styles': 'off', // We sometimes use short inlie styles
164+
'@angular-eslint/template/no-inline-styles': 'off', // We sometimes use short inline styles
166165
'@angular-eslint/template/prefer-ngsrc': 'off', // TODO: experiment with ngsrc and see if we need to use it or not
167166
'@angular-eslint/template/eqeqeq': [
168167
'error',

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,37 @@
1616
"serve-demo": "echo '💡 open http://localhost:8000/fab-speed-dial/' && mkdir -p dist/server && ln -fs ../demo/browser dist/server/fab-speed-dial && php -S localhost:8000 -t dist/server/"
1717
},
1818
"dependencies": {
19-
"@angular/animations": "^19.1.0",
20-
"@angular/cdk": "19.1.2",
21-
"@angular/common": "^19.1.0",
22-
"@angular/compiler": "^19.1.0",
23-
"@angular/core": "^19.1.0",
24-
"@angular/forms": "^19.1.0",
25-
"@angular/material": "19.1.2",
26-
"@angular/platform-browser": "^19.1.0",
27-
"@angular/platform-browser-dynamic": "^19.1.0",
28-
"rxjs": "~7.8.0",
19+
"@angular/animations": "^19.2.6",
20+
"@angular/cdk": "19.2.9",
21+
"@angular/common": "^19.2.6",
22+
"@angular/compiler": "^19.2.6",
23+
"@angular/core": "^19.2.6",
24+
"@angular/forms": "^19.2.6",
25+
"@angular/material": "19.2.9",
26+
"@angular/platform-browser": "^19.2.6",
27+
"@angular/platform-browser-dynamic": "^19.2.6",
28+
"rxjs": "~7.8.2",
2929
"tslib": "^2.3.0",
3030
"zone.js": "~0.15.0"
3131
},
3232
"devDependencies": {
33-
"@angular-devkit/build-angular": "^19.1.5",
34-
"@angular/cli": "^19.1.5",
35-
"@angular/compiler-cli": "^19.1.0",
36-
"@playwright/test": "^1.50.1",
37-
"@types/jasmine": "~5.1.0",
38-
"angular-eslint": "19.0.2",
39-
"eslint": "^9.16.0",
40-
"jasmine-core": "~5.5.0",
33+
"@angular-devkit/build-angular": "^19.2.7",
34+
"@angular/cli": "^19.2.7",
35+
"@angular/compiler-cli": "^19.2.6",
36+
"@playwright/test": "^1.51.1",
37+
"@types/jasmine": "~5.1.7",
38+
"angular-eslint": "^19.3.0",
39+
"eslint": "^9.24.0",
40+
"jasmine-core": "~5.6.0",
4141
"karma": "~6.4.0",
4242
"karma-chrome-launcher": "~3.2.0",
4343
"karma-coverage": "~2.2.0",
4444
"karma-jasmine": "~5.1.0",
4545
"karma-jasmine-html-reporter": "~2.1.0",
46-
"ng-packagr": "^19.1.0",
47-
"playwright-ng-schematics": "1.2.2",
48-
"prettier": "^3.4.2",
49-
"typescript": "~5.7.2",
50-
"typescript-eslint": "8.18.0"
46+
"ng-packagr": "^19.2.2",
47+
"playwright-ng-schematics": "2.0.2",
48+
"prettier": "^3.5.3",
49+
"typescript": "~5.8.3",
50+
"typescript-eslint": "^8.29.1"
5151
}
5252
}

src/app/app.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<mat-card-content class="mat-body-1">
1717
<p>
1818
Direction:
19-
<mat-radio-group [(ngModel)]="direction" name="direction">
19+
<mat-radio-group name="direction" [(ngModel)]="direction">
2020
<mat-radio-button value="up">Up</mat-radio-button>
2121
<mat-radio-button value="down">Down</mat-radio-button>
2222
<mat-radio-button value="left">Left</mat-radio-button>
@@ -37,7 +37,7 @@
3737

3838
<mat-card-content class="mat-body-1">
3939
<mat-slide-toggle [(ngModel)]="open" (click)="stopPropagation($event)">Open</mat-slide-toggle>
40-
<eco-fab-speed-dial [(open)]="open" [direction]="direction">
40+
<eco-fab-speed-dial [direction]="direction" [(open)]="open">
4141
<eco-fab-speed-dial-trigger [spin]="spin">
4242
<button mat-fab (click)="doAction('trigger')">
4343
<mat-icon class="spin180" fontIcon="add" />

0 commit comments

Comments
 (0)