Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ use_repo(yq, "yq_toolchains")

rules_ts_ext = use_extension("@aspect_rules_ts//ts:extensions.bzl", "ext")
rules_ts_ext.deps(
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.9.2 | jq -r '.dist.integrity'
ts_integrity = "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
ts_version = "5.9.2",
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.9.3 | jq -r '.dist.integrity'
ts_integrity = "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
ts_version = "5.9.3",
)
use_repo(rules_ts_ext, "npm_typescript")

Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions apps/code-of-conduct/app/account/account.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {CdkAccordionModule} from '@angular/cdk/accordion';
import {Overlay, OverlayModule} from '@angular/cdk/overlay';
import {Overlay, OverlayModule, OverlayRef} from '@angular/cdk/overlay';
import {TemplatePortal} from '@angular/cdk/portal';
import {CommonModule} from '@angular/common';
import {Component, TemplateRef, ViewChild, ViewContainerRef} from '@angular/core';
Expand Down Expand Up @@ -28,7 +28,7 @@ import {AccountService} from './account.service.js';
})
export class AccountComponent {
/** The overlay used to display the account menu. */
private overlayRef = this.overlay.create();
private overlayRef: OverlayRef;

/** The projected content provided to the template for insertion into the account menu. */
@ViewChild('menuContent', {static: true}) private projected!: TemplateRef<any>;
Expand All @@ -40,7 +40,9 @@ export class AccountComponent {
private vcr: ViewContainerRef,
private overlay: Overlay,
public account: AccountService,
) {}
) {
this.overlayRef = overlay.create();
}

ngOnInit() {
/** Create the template portal using the template from the component template. */
Expand Down
20 changes: 10 additions & 10 deletions apps/code-of-conduct/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"dependencies": {
"@angular/animations": "21.0.0-next.5",
"@angular/cdk": "21.0.0-next.5",
"@angular/common": "21.0.0-next.5",
"@angular/compiler": "21.0.0-next.5",
"@angular/core": "21.0.0-next.5",
"@angular/animations": "21.0.0-next.6",
"@angular/cdk": "21.0.0-next.6",
"@angular/common": "21.0.0-next.6",
"@angular/compiler": "21.0.0-next.6",
"@angular/core": "21.0.0-next.6",
"@angular/fire": "20.0.1",
"@angular/forms": "21.0.0-next.5",
"@angular/material": "21.0.0-next.5",
"@angular/platform-browser": "21.0.0-next.5",
"@angular/platform-browser-dynamic": "21.0.0-next.5",
"@angular/router": "21.0.0-next.5",
"@angular/forms": "21.0.0-next.6",
"@angular/material": "21.0.0-next.6",
"@angular/platform-browser": "21.0.0-next.6",
"@angular/platform-browser-dynamic": "21.0.0-next.6",
"@angular/router": "21.0.0-next.6",
"@octokit/rest": "",
"rxjs": "7.8.2",
"zone.js": "0.15.1"
Expand Down
4 changes: 2 additions & 2 deletions apps/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"esModuleInterop": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"module": "esnext",
"target": "es2020",
"target": "es2022",
"lib": ["es2021", "dom"],
"skipLibCheck": true,
"types": ["node", "jasmine"],
Expand Down
2 changes: 1 addition & 1 deletion bazel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"piscina": "^5.0.0",
"send": "1.2.0",
"true-case-path": "2.2.1",
"typescript": "5.9.2",
"typescript": "5.9.3",
"wait-on": "^9.0.0",
"yargs": "18.0.0",
"protractor": "7.0.0",
Expand Down
1 change: 1 addition & 0 deletions bazel/spec-bundling/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ts_config(
deps = [
":node_modules/@types/jasmine",
":node_modules/@types/node",
":package.json", # Needed due to the { "type": "module" } field.
],
)

Expand Down
6 changes: 3 additions & 3 deletions bazel/spec-bundling/test/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"dependencies": {
"@angular/compiler": "21.0.0-next.5",
"@angular/core": "21.0.0-next.5",
"@angular/platform-browser": "21.0.0-next.5",
"@angular/compiler": "21.0.0-next.6",
"@angular/core": "21.0.0-next.6",
"@angular/platform-browser": "21.0.0-next.6",
"@types/jasmine": "5.1.9",
"@types/jsdom": "21.1.7",
"@types/node": "24.5.2",
Expand Down
2 changes: 2 additions & 0 deletions bazel/spec-bundling/test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"compilerOptions": {
"declaration": true,
"strict": true,
"module": "node16",
"moduleResolution": "node16",
"types": ["node", "jasmine"]
}
}
2 changes: 1 addition & 1 deletion ng-dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"supports-color": "10.2.2",
"typed-graphqlify": "3.1.6",
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript": "5.9.3",
"utf-8-validate": "6.0.5",
"which": "5.0.0",
"yaml": "2.8.1",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
},
"devDependencies": {
"@angular/compiler-cli": "21.0.0-next.5",
"@angular/compiler-cli": "21.0.0-next.6",
"@bazel/bazelisk": "1.26.0",
"@bazel/buildifier": "8.2.1",
"firebase-tools": "14.17.0",
Expand All @@ -33,7 +33,7 @@
"tslib": "^2.5.2",
"tslint": "6.1.3",
"tsx": "^4.15.7",
"typescript": "5.9.2"
"typescript": "5.9.3"
},
"pnpm": {
"packageExtensions": {
Expand Down
Loading
Loading