Skip to content

Commit 2a68424

Browse files
committed
ng update @angular/core@19 @angular/cli@19
1 parent e03749e commit 2a68424

File tree

19 files changed

+3239
-2060
lines changed

19 files changed

+3239
-2060
lines changed

package-lock.json

Lines changed: 3155 additions & 1997 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,33 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "^18.2.13",
14+
"@angular/animations": "^19.2.14",
1515
"@angular/cdk": "^18.2.14",
16-
"@angular/common": "^18.2.13",
17-
"@angular/compiler": "^18.2.13",
18-
"@angular/core": "^18.2.13",
19-
"@angular/forms": "^18.2.13",
16+
"@angular/common": "^19.2.14",
17+
"@angular/compiler": "^19.2.14",
18+
"@angular/core": "^19.2.14",
19+
"@angular/forms": "^19.2.14",
2020
"@angular/material": "^18.2.14",
21-
"@angular/platform-browser": "^18.2.13",
22-
"@angular/platform-browser-dynamic": "^18.2.13",
23-
"@angular/router": "^18.2.13",
21+
"@angular/platform-browser": "^19.2.14",
22+
"@angular/platform-browser-dynamic": "^19.2.14",
23+
"@angular/router": "^19.2.14",
2424
"github-usage-report": "3.0",
2525
"highcharts": "^11.2.0",
2626
"highcharts-angular": "^4.0.0",
2727
"jspdf": "^2.5.1",
2828
"rxjs": "~7.8.0",
2929
"tslib": "^2.3.0",
30-
"zone.js": "~0.14.10"
30+
"zone.js": "~0.15.1"
3131
},
3232
"devDependencies": {
33-
"@angular-devkit/build-angular": "^18.2.19",
33+
"@angular-devkit/build-angular": "^19.2.14",
3434
"@angular-eslint/builder": "19.7.1",
3535
"@angular-eslint/eslint-plugin": "19.7.1",
3636
"@angular-eslint/eslint-plugin-template": "19.7.1",
3737
"@angular-eslint/schematics": "19.7.1",
3838
"@angular-eslint/template-parser": "19.7.1",
39-
"@angular/cli": "~18.2.19",
40-
"@angular/compiler-cli": "^18.2.13",
39+
"@angular/cli": "~19.2.14",
40+
"@angular/compiler-cli": "^19.2.14",
4141
"@types/jasmine": "~4.3.0",
4242
"@typescript-eslint/eslint-plugin": "^7.2.0",
4343
"@typescript-eslint/parser": "^7.2.0",

src/app/app.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const COPILOT_ICON = `<svg width="256px" height="208px" viewBox="0 0 256 208" ve
2020
selector: 'app-root',
2121
templateUrl: './app.component.html',
2222
styleUrls: ['./app.component.scss'],
23+
standalone: false
2324
})
2425
export class AppComponent implements OnInit {
2526
theme!: 'light-theme' | 'dark-theme';

src/app/components/usage/actions/actions.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import { Component, Input, OnInit } from '@angular/core';
22
import { CustomUsageReportLine, UsageReportService } from 'src/app/usage-report.service';
33

44
@Component({
5-
selector: 'app-actions',
6-
templateUrl: './actions.component.html',
7-
styleUrl: './actions.component.scss'
5+
selector: 'app-actions',
6+
templateUrl: './actions.component.html',
7+
styleUrl: './actions.component.scss',
8+
standalone: false
89
})
910
export class ActionsComponent implements OnInit {
1011
@Input() data!: CustomUsageReportLine[];

src/app/components/usage/actions/charts/chart-bar-top-time/chart-bar-top-time.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { ThemingService } from 'src/app/theme.service';
44
import { CustomUsageReportLine } from 'src/app/usage-report.service';
55

66
@Component({
7-
selector: 'app-chart-bar-top-time',
8-
templateUrl: './chart-bar-top-time.component.html',
9-
styleUrl: './chart-bar-top-time.component.scss'
7+
selector: 'app-chart-bar-top-time',
8+
templateUrl: './chart-bar-top-time.component.html',
9+
styleUrl: './chart-bar-top-time.component.scss',
10+
standalone: false
1011
})
1112
export class ChartBarTopTimeComponent implements OnChanges {
1213
@Input() data!: CustomUsageReportLine[];

src/app/components/usage/actions/charts/chart-line-usage-daily/chart-line-usage-daily.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { ThemingService } from 'src/app/theme.service';
44
import { CustomUsageReportLine, UsageReportService } from 'src/app/usage-report.service';
55

66
@Component({
7-
selector: 'app-chart-line-usage-daily',
8-
templateUrl: './chart-line-usage-daily.component.html',
9-
styleUrl: './chart-line-usage-daily.component.scss'
7+
selector: 'app-chart-line-usage-daily',
8+
templateUrl: './chart-line-usage-daily.component.html',
9+
styleUrl: './chart-line-usage-daily.component.scss',
10+
standalone: false
1011
})
1112
export class ChartLineUsageDailyComponent implements OnChanges {
1213
@Input() data!: CustomUsageReportLine[];

src/app/components/usage/actions/charts/chart-pie-sku/chart-pie-sku.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { ThemingService } from 'src/app/theme.service';
44
import { CustomUsageReportLine, UsageReportService } from 'src/app/usage-report.service';
55

66
@Component({
7-
selector: 'app-chart-pie-sku',
8-
templateUrl: './chart-pie-sku.component.html',
9-
styleUrl: './chart-pie-sku.component.scss'
7+
selector: 'app-chart-pie-sku',
8+
templateUrl: './chart-pie-sku.component.html',
9+
styleUrl: './chart-pie-sku.component.scss',
10+
standalone: false
1011
})
1112
export class ChartPieSkuComponent implements OnChanges {
1213
@Input() data!: CustomUsageReportLine[];

src/app/components/usage/actions/charts/chart-pie-user/chart-pie-user.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { ThemingService } from 'src/app/theme.service';
44
import { CustomUsageReportLine, UsageReportService } from 'src/app/usage-report.service';
55

66
@Component({
7-
selector: 'app-chart-pie-user',
8-
templateUrl: './chart-pie-user.component.html',
9-
styleUrls: ['./chart-pie-user.component.scss']
7+
selector: 'app-chart-pie-user',
8+
templateUrl: './chart-pie-user.component.html',
9+
styleUrls: ['./chart-pie-user.component.scss'],
10+
standalone: false
1011
})
1112
export class ChartPieUserComponent implements OnChanges {
1213
@Input() data!: CustomUsageReportLine[];

src/app/components/usage/actions/table-workflow-usage/table-workflow-usage.component.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ interface UsageColumn {
4848
}
4949

5050
@Component({
51-
selector: 'app-table-workflow-usage',
52-
templateUrl: './table-workflow-usage.component.html',
53-
styleUrl: './table-workflow-usage.component.scss'
51+
selector: 'app-table-workflow-usage',
52+
templateUrl: './table-workflow-usage.component.html',
53+
styleUrl: './table-workflow-usage.component.scss',
54+
standalone: false
5455
})
5556
export class TableWorkflowUsageComponent implements OnChanges, AfterViewInit {
5657
columns = [] as UsageColumn[];
@@ -290,7 +291,8 @@ import { Pipe, PipeTransform } from '@angular/core';
290291
import { CurrencyPipe, DecimalPipe } from '@angular/common';
291292

292293
@Pipe({
293-
name: 'duration'
294+
name: 'duration',
295+
standalone: false
294296
})
295297
export class DurationPipe implements PipeTransform {
296298

src/app/components/usage/codespaces/codespaces.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
22
import { CustomUsageReportLine } from 'src/app/usage-report.service';
33

44
@Component({
5-
selector: 'app-codespaces',
6-
templateUrl: './codespaces.component.html',
7-
styleUrl: './codespaces.component.scss'
5+
selector: 'app-codespaces',
6+
templateUrl: './codespaces.component.html',
7+
styleUrl: './codespaces.component.scss',
8+
standalone: false
89
})
910
export class CodespacesComponent {
1011
@Input() data!: CustomUsageReportLine[];

0 commit comments

Comments
 (0)