mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
update desktop and browser swal references to use CL
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import { DIALOG_DATA } from "@angular/cdk/dialog";
|
||||
import { Component, Inject } from "@angular/core";
|
||||
|
||||
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
||||
import { ButtonModule, DialogModule, DialogService } from "@bitwarden/components";
|
||||
|
||||
export type BrowserSyncVerificationDialogParams = {
|
||||
fingerprint: string;
|
||||
};
|
||||
|
||||
@Component({
|
||||
templateUrl: "browser-sync-verification-dialog.component.html",
|
||||
standalone: true,
|
||||
imports: [JslibModule, ButtonModule, DialogModule],
|
||||
})
|
||||
export class BrowserSyncVerificationDialogComponent {
|
||||
constructor(@Inject(DIALOG_DATA) protected params: BrowserSyncVerificationDialogParams) {}
|
||||
|
||||
static open(dialogService: DialogService, data: BrowserSyncVerificationDialogParams) {
|
||||
return dialogService.open(BrowserSyncVerificationDialogComponent, {
|
||||
data,
|
||||
disableClose: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user