-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/bitwarden/clients into vaul…
…t/pm-9111/persist-add-edit
- Loading branch information
Showing
27 changed files
with
191 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@bitwarden/desktop", | ||
"productName": "Bitwarden", | ||
"description": "A secure and free password manager for all of your devices.", | ||
"version": "2025.1.1", | ||
"version": "2025.1.2", | ||
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)", | ||
"homepage": "https://bitwarden.com", | ||
"license": "GPL-3.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
..._license/bit-web/src/app/tools/access-intelligence/org-at-risk-apps-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<bit-dialog> | ||
<ng-container bitDialogTitle> | ||
<span bitDialogTitle>{{ "atRiskApplicationsWithCount" | i18n: atRiskApps.length }} </span> | ||
</ng-container> | ||
<ng-container bitDialogContent> | ||
<div class="tw-flex tw-flex-col tw-gap-2"> | ||
<span bitTypography="body1">{{ "atRiskApplicationsDescription" | i18n }}</span> | ||
<div class="tw-flex tw-justify-between tw-mt-2 tw-text-muted"> | ||
<div bitTypography="body2" class="tw-font-bold">{{ "application" | i18n }}</div> | ||
<div bitTypography="body2" class="tw-font-bold">{{ "atRiskPasswords" | i18n }}</div> | ||
</div> | ||
<ng-container *ngFor="let app of atRiskApps"> | ||
<div class="tw-flex tw-justify-between tw-mt-2"> | ||
<div>{{ app.applicationName }}</div> | ||
<div>{{ app.atRiskPasswordCount }}</div> | ||
</div> | ||
</ng-container> | ||
</div> | ||
</ng-container> | ||
<ng-container bitDialogFooter> | ||
<button bitButton bitDialogClose buttonType="secondary" type="button"> | ||
{{ "close" | i18n }} | ||
</button> | ||
</ng-container> | ||
</bit-dialog> |
24 changes: 24 additions & 0 deletions
24
...en_license/bit-web/src/app/tools/access-intelligence/org-at-risk-apps-dialog.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { DIALOG_DATA } from "@angular/cdk/dialog"; | ||
import { CommonModule } from "@angular/common"; | ||
import { Component, Inject } from "@angular/core"; | ||
|
||
import { JslibModule } from "@bitwarden/angular/jslib.module"; | ||
import { AtRiskApplicationDetail } from "@bitwarden/bit-common/tools/reports/risk-insights/models/password-health"; | ||
import { ButtonModule, DialogModule, DialogService, TypographyModule } from "@bitwarden/components"; | ||
|
||
export const openOrgAtRiskMembersDialog = ( | ||
dialogService: DialogService, | ||
dialogConfig: AtRiskApplicationDetail[], | ||
) => | ||
dialogService.open<boolean, AtRiskApplicationDetail[]>(OrgAtRiskAppsDialogComponent, { | ||
data: dialogConfig, | ||
}); | ||
|
||
@Component({ | ||
standalone: true, | ||
templateUrl: "./org-at-risk-apps-dialog.component.html", | ||
imports: [ButtonModule, CommonModule, DialogModule, JslibModule, TypographyModule], | ||
}) | ||
export class OrgAtRiskAppsDialogComponent { | ||
constructor(@Inject(DIALOG_DATA) protected atRiskApps: AtRiskApplicationDetail[]) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.