Skip to content

Commit 5c978f6

Browse files
committed
🎉 feat: run ng 19 update script
1 parent 330eefe commit 5c978f6

File tree

8 files changed

+12
-25
lines changed

8 files changed

+12
-25
lines changed

bun.lockb

2.23 KB
Binary file not shown.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@
1414
"lint:material": "ng lint material"
1515
},
1616
"dependencies": {
17-
"@angular/animations": "^18.2.8",
17+
"@angular/animations": "^19.0.0",
1818
"@angular/cdk": "~18.2.9",
19-
"@angular/common": "^18.2.8",
20-
"@angular/compiler": "^18.2.8",
21-
"@angular/core": "^18.2.8",
22-
"@angular/forms": "^18.2.8",
19+
"@angular/common": "^19.0.0",
20+
"@angular/compiler": "^19.0.0",
21+
"@angular/core": "^19.0.0",
22+
"@angular/forms": "^19.0.0",
2323
"@angular/material": "~18.2.9",
24-
"@angular/platform-browser": "^18.2.8",
25-
"@angular/platform-browser-dynamic": "^18.2.8",
26-
"@angular/router": "^18.2.8",
24+
"@angular/platform-browser": "^19.0.0",
25+
"@angular/platform-browser-dynamic": "^19.0.0",
26+
"@angular/router": "^19.0.0",
2727
"rxjs": "~7.8.1",
2828
"tslib": "^2.8.0",
2929
"zone.js": "^0.15.0"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "^18.2.9",
32+
"@angular-devkit/build-angular": "^19.0.1",
3333
"@angular-eslint/builder": "^18.4.0",
3434
"@angular-eslint/eslint-plugin": "18.4.0",
3535
"@angular-eslint/eslint-plugin-template": "18.4.0",
3636
"@angular-eslint/schematics": "^18.4.0",
3737
"@angular-eslint/template-parser": "18.4.0",
38-
"@angular/cli": "^18.2.9",
39-
"@angular/compiler-cli": "^18.2.8",
38+
"@angular/cli": "^19.0.1",
39+
"@angular/compiler-cli": "^19.0.0",
4040
"@types/jasmine": "~5.1.4",
4141
"@types/node": "^22.7.6",
4242
"@typescript-eslint/eslint-plugin": "^8.10.0",
@@ -49,7 +49,7 @@
4949
"karma-coverage": "~2.2.1",
5050
"karma-jasmine": "~5.1.0",
5151
"karma-jasmine-html-reporter": "~2.1.0",
52-
"ng-packagr": "^18.2.1",
52+
"ng-packagr": "^19.0.0",
5353
"typescript": "5.5.4"
5454
}
5555
}

projects/app/src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { MatDropzone } from '@ngx-dropzone/material';
1010

1111
@Component({
1212
selector: 'app-root',
13-
standalone: true,
1413
imports: [
1514
CommonModule,
1615
ReactiveFormsModule,

projects/cdk/src/lib/dropzone/dropzone.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ describe('DropzoneComponent', () => {
146146

147147
@Component({
148148
selector: 'basic-dropzone',
149-
standalone: true,
150149
imports: [DropzoneComponent, FileInputDirective],
151150
template: `
152151
<ngx-dropzone>
@@ -158,7 +157,6 @@ class DropzoneBasic {}
158157

159158
@Component({
160159
selector: 'form-control-dropzone',
161-
standalone: true,
162160
imports: [ReactiveFormsModule, DropzoneComponent, FileInputDirective],
163161
template: `
164162
<ngx-dropzone>

projects/cdk/src/lib/dropzone/dropzone.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import { DropzoneService } from './dropzone.service';
2020
@Component({
2121
selector: 'ngx-dropzone',
2222
exportAs: 'dropzone',
23-
standalone: true,
2423
imports: [FileInputDirective],
2524
providers: [DropzoneService],
2625
template: `<ng-content></ng-content>`,

projects/cdk/src/lib/file-input/file-input.directive.spec.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,36 +298,31 @@ describe('FileInputDirective', () => {
298298
});
299299

300300
@Component({
301-
standalone: true,
302301
imports: [FileInputDirective],
303302
template: `<input fileInput type="file" />`,
304303
})
305304
class FileInputBasic {}
306305

307306
@Component({
308-
standalone: true,
309307
imports: [FileInputDirective],
310308
template: `<input fileInput type="file" multiple />`,
311309
})
312310
class FileInputMultiple {}
313311

314312
@Component({
315-
standalone: true,
316313
imports: [FileInputDirective],
317314
// This combination is not valid! "Append" should only be used together with "multiple".
318315
template: `<input fileInput type="file" mode="append" />`,
319316
})
320317
class FileInputAppend {}
321318

322319
@Component({
323-
standalone: true,
324320
imports: [FileInputDirective],
325321
template: `<input fileInput type="file" multiple mode="append" />`,
326322
})
327323
class FileInputMultipleAppend {}
328324

329325
@Component({
330-
standalone: true,
331326
imports: [ReactiveFormsModule, FileInputDirective],
332327
template: `<input fileInput type="file" [formControl]="fileCtrl" />`,
333328
})
@@ -336,7 +331,6 @@ class FileInputWithFormControl {
336331
}
337332

338333
@Component({
339-
standalone: true,
340334
imports: [ReactiveFormsModule, FileInputDirective],
341335
template: `<input fileInput type="file" disabled />`,
342336
})

projects/material/src/lib/mat-dropzone/mat-dropzone.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ describe('MatDropzone', () => {
118118

119119
@Component({
120120
selector: 'basic-dropzone',
121-
standalone: true,
122121
imports: [MatFormFieldModule, MatDropzone, FileInputDirective],
123122
template: `
124123
<mat-form-field>
@@ -133,7 +132,6 @@ class DropzoneBasic {}
133132

134133
@Component({
135134
selector: 'form-control-dropzone',
136-
standalone: true,
137135
imports: [ReactiveFormsModule, MatFormFieldModule, MatIconModule, MatChipsModule, MatDropzone, FileInputDirective],
138136
template: `
139137
<mat-form-field>

projects/material/src/lib/mat-dropzone/mat-dropzone.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { merge, Observable, Subject, takeUntil, tap } from 'rxjs';
2727
@Component({
2828
selector: 'ngx-mat-dropzone',
2929
exportAs: 'matDropzone',
30-
standalone: true,
3130
imports: [MatFormField, MatChipRow, FileInputDirective, DropzoneComponent],
3231
providers: [
3332
DropzoneService,

0 commit comments

Comments
 (0)