mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
* [PM-23258] changing verbiage from import data to import items * [PM-23258] Removing vault and data from import and export titles, navs, and buttons * [PM-23258] more verbiage changes * [PM-23258] reverting unnecessary change * [PM-23258] removing unused text from messages json files * [PM-23258] small text changes from design * [PM-23258] including secrets manager changes
27 lines
763 B
HTML
27 lines
763 B
HTML
<bit-dialog #dialog dialogSize="large">
|
|
<span bitDialogTitle>{{ "export" | i18n }}</span>
|
|
<ng-container bitDialogContent>
|
|
<tools-export
|
|
(formLoading)="this.loading = $event"
|
|
(formDisabled)="this.disabled = $event"
|
|
(onSuccessfulExport)="this.onSuccessfulExport($event)"
|
|
></tools-export>
|
|
</ng-container>
|
|
<ng-container bitDialogFooter>
|
|
<button
|
|
[disabled]="disabled"
|
|
[loading]="loading"
|
|
form="export_form_exportForm"
|
|
bitButton
|
|
type="submit"
|
|
bitFormButton
|
|
buttonType="primary"
|
|
>
|
|
{{ "export" | i18n }}
|
|
</button>
|
|
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
|
{{ "cancel" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-dialog>
|