mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-25 16:59:17 +01:00
[PM-5820] Upgrade angular to 16 (#7638)
Upgrade Angular and related dependencies to v16.
This commit is contained in:
parent
90328b1eba
commit
6b12968721
@ -4,21 +4,41 @@
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<org-switcher [filter]="orgFilter" [hideNewButton]="true"></org-switcher>
|
<org-switcher [filter]="orgFilter" [hideNewButton]="true"></org-switcher>
|
||||||
<bit-nav-item icon="bwi-collection" [text]="'projects' | i18n" route="projects"></bit-nav-item>
|
<bit-nav-item
|
||||||
<bit-nav-item icon="bwi-key" [text]="'secrets' | i18n" route="secrets"></bit-nav-item>
|
icon="bwi-collection"
|
||||||
|
[text]="'projects' | i18n"
|
||||||
|
route="projects"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
|
></bit-nav-item>
|
||||||
|
<bit-nav-item
|
||||||
|
icon="bwi-key"
|
||||||
|
[text]="'secrets' | i18n"
|
||||||
|
route="secrets"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
|
></bit-nav-item>
|
||||||
<bit-nav-item
|
<bit-nav-item
|
||||||
icon="bwi-wrench"
|
icon="bwi-wrench"
|
||||||
[text]="'serviceAccounts' | i18n"
|
[text]="'serviceAccounts' | i18n"
|
||||||
route="service-accounts"
|
route="service-accounts"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
></bit-nav-item>
|
></bit-nav-item>
|
||||||
<bit-nav-item
|
<bit-nav-item
|
||||||
icon="bwi-trash"
|
icon="bwi-trash"
|
||||||
[text]="'trash' | i18n"
|
[text]="'trash' | i18n"
|
||||||
route="trash"
|
route="trash"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
*ngIf="isAdmin$ | async"
|
*ngIf="isAdmin$ | async"
|
||||||
></bit-nav-item>
|
></bit-nav-item>
|
||||||
<bit-nav-group icon="bwi-cog" [text]="'settings' | i18n" *ngIf="isAdmin$ | async">
|
<bit-nav-group icon="bwi-cog" [text]="'settings' | i18n" *ngIf="isAdmin$ | async">
|
||||||
<bit-nav-item [text]="'importData' | i18n" route="settings/import"></bit-nav-item>
|
<bit-nav-item
|
||||||
<bit-nav-item [text]="'exportData' | i18n" route="settings/export"></bit-nav-item>
|
[text]="'importData' | i18n"
|
||||||
|
route="settings/import"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
|
></bit-nav-item>
|
||||||
|
<bit-nav-item
|
||||||
|
[text]="'exportData' | i18n"
|
||||||
|
route="settings/export"
|
||||||
|
[relativeTo]="route.parent"
|
||||||
|
></bit-nav-item>
|
||||||
</bit-nav-group>
|
</bit-nav-group>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -18,7 +18,7 @@ export class NavigationComponent {
|
|||||||
);
|
);
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private route: ActivatedRoute,
|
protected route: ActivatedRoute,
|
||||||
private organizationService: OrganizationService,
|
private organizationService: OrganizationService,
|
||||||
) {}
|
) {}
|
||||||
}
|
}
|
||||||
|
@ -23,8 +23,8 @@ export class DialogTitleContainerDirective implements OnInit {
|
|||||||
Promise.resolve().then(() => {
|
Promise.resolve().then(() => {
|
||||||
const container = this.dialogRef.containerInstance as CdkDialogContainer;
|
const container = this.dialogRef.containerInstance as CdkDialogContainer;
|
||||||
|
|
||||||
if (container && !container._ariaLabelledBy) {
|
if (container && container._ariaLabelledByQueue.length === 0) {
|
||||||
container._ariaLabelledBy = this.id;
|
container._ariaLabelledByQueue.push(this.id);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { Directive, EventEmitter, Input, Output } from "@angular/core";
|
import { Directive, EventEmitter, Input, Output } from "@angular/core";
|
||||||
|
import { ActivatedRoute } from "@angular/router";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class used in `NavGroupComponent` and `NavItemComponent`
|
* Base class used in `NavGroupComponent` and `NavItemComponent`
|
||||||
@ -25,6 +26,11 @@ export abstract class NavBaseComponent {
|
|||||||
*/
|
*/
|
||||||
@Input() route: string | any[];
|
@Input() route: string | any[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Passed to internal `routerLink`
|
||||||
|
*/
|
||||||
|
@Input() relativeTo?: ActivatedRoute | null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If this item is used within a tree, set `variant` to `"tree"`
|
* If this item is used within a tree, set `variant` to `"tree"`
|
||||||
*/
|
*/
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
[text]="text"
|
[text]="text"
|
||||||
[icon]="icon"
|
[icon]="icon"
|
||||||
[route]="route"
|
[route]="route"
|
||||||
|
[relativeTo]="relativeTo"
|
||||||
[variant]="variant"
|
[variant]="variant"
|
||||||
(mainContentClicked)="toggle()"
|
(mainContentClicked)="toggle()"
|
||||||
[treeDepth]="treeDepth"
|
[treeDepth]="treeDepth"
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
<a
|
<a
|
||||||
class="fvw tw-w-full tw-truncate tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline"
|
class="fvw tw-w-full tw-truncate tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline"
|
||||||
[routerLink]="route"
|
[routerLink]="route"
|
||||||
|
[relativeTo]="relativeTo"
|
||||||
[attr.aria-label]="ariaLabel || text"
|
[attr.aria-label]="ariaLabel || text"
|
||||||
routerLinkActive
|
routerLinkActive
|
||||||
[routerLinkActiveOptions]="rlaOptions"
|
[routerLinkActiveOptions]="rlaOptions"
|
||||||
|
3912
package-lock.json
generated
3912
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
46
package.json
46
package.json
@ -34,24 +34,24 @@
|
|||||||
"libs/*"
|
"libs/*"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "15.2.10",
|
"@angular-devkit/build-angular": "16.2.11",
|
||||||
"@angular-eslint/eslint-plugin": "15.2.1",
|
"@angular-eslint/eslint-plugin": "16.3.1",
|
||||||
"@angular-eslint/eslint-plugin-template": "15.2.1",
|
"@angular-eslint/eslint-plugin-template": "16.3.1",
|
||||||
"@angular-eslint/template-parser": "15.2.1",
|
"@angular-eslint/template-parser": "16.3.1",
|
||||||
"@angular/cli": "15.2.10",
|
"@angular/cli": "16.2.11",
|
||||||
"@angular/compiler-cli": "15.2.10",
|
"@angular/compiler-cli": "16.2.12",
|
||||||
"@angular/elements": "15.2.10",
|
"@angular/elements": "16.2.12",
|
||||||
"@compodoc/compodoc": "1.1.23",
|
"@compodoc/compodoc": "1.1.23",
|
||||||
"@electron/notarize": "2.2.1",
|
"@electron/notarize": "2.2.1",
|
||||||
"@electron/rebuild": "3.6.0",
|
"@electron/rebuild": "3.6.0",
|
||||||
"@ngtools/webpack": "15.2.10",
|
"@ngtools/webpack": "16.2.11",
|
||||||
"@storybook/addon-a11y": "7.6.4",
|
"@storybook/addon-a11y": "7.6.4",
|
||||||
"@storybook/addon-actions": "7.6.4",
|
"@storybook/addon-actions": "7.6.4",
|
||||||
"@storybook/addon-designs": "7.0.7",
|
"@storybook/addon-designs": "7.0.7",
|
||||||
"@storybook/addon-essentials": "7.6.4",
|
"@storybook/addon-essentials": "7.6.4",
|
||||||
|
"@storybook/addon-interactions": "7.6.4",
|
||||||
"@storybook/addon-links": "7.6.4",
|
"@storybook/addon-links": "7.6.4",
|
||||||
"@storybook/angular": "7.6.4",
|
"@storybook/angular": "7.6.4",
|
||||||
"@storybook/addon-interactions": "7.6.4",
|
|
||||||
"@storybook/jest": "0.2.3",
|
"@storybook/jest": "0.2.3",
|
||||||
"@storybook/testing-library": "0.2.2",
|
"@storybook/testing-library": "0.2.2",
|
||||||
"@types/argon2-browser": "1.18.1",
|
"@types/argon2-browser": "1.18.1",
|
||||||
@ -149,20 +149,20 @@
|
|||||||
"webpack-node-externals": "3.0.0"
|
"webpack-node-externals": "3.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "15.2.10",
|
"@angular/animations": "16.2.12",
|
||||||
"@angular/cdk": "15.2.9",
|
"@angular/cdk": "16.2.13",
|
||||||
"@angular/common": "15.2.10",
|
"@angular/common": "16.2.12",
|
||||||
"@angular/compiler": "15.2.10",
|
"@angular/compiler": "16.2.12",
|
||||||
"@angular/core": "15.2.10",
|
"@angular/core": "16.2.12",
|
||||||
"@angular/forms": "15.2.10",
|
"@angular/forms": "16.2.12",
|
||||||
"@angular/platform-browser": "15.2.10",
|
"@angular/platform-browser": "16.2.12",
|
||||||
"@angular/platform-browser-dynamic": "15.2.10",
|
"@angular/platform-browser-dynamic": "16.2.12",
|
||||||
"@angular/router": "15.2.10",
|
"@angular/router": "16.2.12",
|
||||||
"@koa/multer": "3.0.2",
|
"@koa/multer": "3.0.2",
|
||||||
"@koa/router": "12.0.1",
|
"@koa/router": "12.0.1",
|
||||||
"@microsoft/signalr": "8.0.0",
|
"@microsoft/signalr": "8.0.0",
|
||||||
"@microsoft/signalr-protocol-msgpack": "8.0.0",
|
"@microsoft/signalr-protocol-msgpack": "8.0.0",
|
||||||
"@ng-select/ng-select": "10.0.4",
|
"@ng-select/ng-select": "11.2.0",
|
||||||
"argon2": "0.31.0",
|
"argon2": "0.31.0",
|
||||||
"argon2-browser": "1.18.0",
|
"argon2-browser": "1.18.0",
|
||||||
"big-integer": "1.6.51",
|
"big-integer": "1.6.51",
|
||||||
@ -186,8 +186,8 @@
|
|||||||
"lowdb": "1.0.0",
|
"lowdb": "1.0.0",
|
||||||
"lunr": "2.3.9",
|
"lunr": "2.3.9",
|
||||||
"multer": "1.4.5-lts.1",
|
"multer": "1.4.5-lts.1",
|
||||||
"ngx-infinite-scroll": "15.0.0",
|
"ngx-infinite-scroll": "16.0.0",
|
||||||
"ngx-toastr": "16.2.0",
|
"ngx-toastr": "17.0.2",
|
||||||
"node-fetch": "2.6.12",
|
"node-fetch": "2.6.12",
|
||||||
"node-forge": "1.3.1",
|
"node-forge": "1.3.1",
|
||||||
"nord": "0.2.1",
|
"nord": "0.2.1",
|
||||||
@ -203,13 +203,13 @@
|
|||||||
"tabbable": "6.2.0",
|
"tabbable": "6.2.0",
|
||||||
"tldts": "6.1.8",
|
"tldts": "6.1.8",
|
||||||
"utf-8-validate": "6.0.3",
|
"utf-8-validate": "6.0.3",
|
||||||
"zone.js": "0.12.0",
|
"zone.js": "0.13.3",
|
||||||
"zxcvbn": "4.4.2"
|
"zxcvbn": "4.4.2"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"tailwindcss": "$tailwindcss",
|
"tailwindcss": "$tailwindcss",
|
||||||
"@storybook/angular": {
|
"@storybook/angular": {
|
||||||
"zone.js": "0.12.0"
|
"zone.js": "$zone.js"
|
||||||
},
|
},
|
||||||
"replacestream": "4.0.3"
|
"replacestream": "4.0.3"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user