1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[PM-5820] Upgrade angular to 16 (#7638)

Upgrade Angular and related dependencies to v16.
This commit is contained in:
Oscar Hinton
2024-02-12 17:00:41 +01:00
committed by GitHub
parent 90328b1eba
commit 6b12968721
8 changed files with 1680 additions and 2320 deletions

View File

@@ -1,4 +1,5 @@
import { Directive, EventEmitter, Input, Output } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
/**
* Base class used in `NavGroupComponent` and `NavItemComponent`
@@ -25,6 +26,11 @@ export abstract class NavBaseComponent {
*/
@Input() route: string | any[];
/**
* Passed to internal `routerLink`
*/
@Input() relativeTo?: ActivatedRoute | null;
/**
* If this item is used within a tree, set `variant` to `"tree"`
*/