1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Bump dependencies (#936)

* Bump dependencies
This commit is contained in:
Oscar Hinton
2021-04-22 21:29:29 +02:00
committed by GitHub
parent 38097c40d8
commit 9547b72566
10 changed files with 4934 additions and 7065 deletions

View File

@@ -1,5 +1,3 @@
import 'core-js';
import { ToasterModule } from 'angular2-toaster';
import { InfiniteScrollModule } from 'ngx-infinite-scroll';

View File

@@ -1,6 +1,5 @@
/* tslint:disable */
import 'core-js/es6';
import 'core-js/es7/reflect';
import 'core-js/stable';
require('zone.js/dist/zone');
// IE11 fix, ref: https://github.com/angular/angular/issues/24769

View File

@@ -192,7 +192,7 @@ export class PaymentComponent implements OnInit {
}
handleStripeCardPayment(clientSecret: string, successCallback: () => Promise<any>): Promise<any> {
return new Promise((resolve, reject) => {
return new Promise<void>((resolve, reject) => {
if (this.showMethods && this.stripeCardNumberElement == null) {
reject();
return;

View File

@@ -118,7 +118,7 @@ export class TaxInfoComponent {
submitTaxInfo(): Promise<any> {
if (!this.hasChanged()) {
return new Promise(resolve => { resolve(); });
return new Promise<void>(resolve => { resolve(); });
}
const request = this.getTaxInfoRequest();
return this.organizationId ? this.apiService.putOrganizationTaxInfo(this.organizationId,

View File

@@ -4,7 +4,6 @@
<head>
<meta charset="utf-8" />
<title>Bitwarden U2F Connector</title>
<script src="scripts/u2f.js"></script>
</head>
<body></body>