mirror of
https://github.com/bitwarden/web
synced 2025-12-14 23:33:16 +00:00
[jslib] Update (5d874d0 -> 6ab444a) (#618)
* Update jslib (5d874d0 -> 6ab444a) * Update dependency flows
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 5d874d07b3...6ab444a986
@@ -1,19 +1,13 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import {
|
import { Router } from '@angular/router';
|
||||||
ActivatedRoute,
|
|
||||||
Router,
|
|
||||||
} from '@angular/router';
|
|
||||||
|
|
||||||
import { ApiService } from 'jslib/abstractions/api.service';
|
import { ApiService } from 'jslib/abstractions/api.service';
|
||||||
import { CipherService } from 'jslib/abstractions/cipher.service';
|
|
||||||
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||||||
import { FolderService } from 'jslib/abstractions/folder.service';
|
|
||||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
||||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
import { PolicyService } from 'jslib/abstractions/policy.service';
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||||
import { SyncService } from 'jslib/abstractions/sync.service';
|
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -28,10 +22,8 @@ export class SetPasswordComponent extends BaseSetPasswordComponent {
|
|||||||
constructor(apiService: ApiService, i18nService: I18nService,
|
constructor(apiService: ApiService, i18nService: I18nService,
|
||||||
cryptoService: CryptoService, messagingService: MessagingService,
|
cryptoService: CryptoService, messagingService: MessagingService,
|
||||||
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
||||||
platformUtilsService: PlatformUtilsService, folderService: FolderService,
|
platformUtilsService: PlatformUtilsService, policyService: PolicyService, router: Router) {
|
||||||
cipherService: CipherService, syncService: SyncService,
|
super(i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
||||||
policyService: PolicyService, router: Router, route: ActivatedRoute) {
|
platformUtilsService, policyService, router, apiService);
|
||||||
super(apiService, i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
|
||||||
platformUtilsService, folderService, cipherService, syncService, policyService, router, route);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { Router } from '@angular/router';
|
|
||||||
|
|
||||||
import { ApiService } from 'jslib/abstractions/api.service';
|
import { ApiService } from 'jslib/abstractions/api.service';
|
||||||
import { CipherService } from 'jslib/abstractions/cipher.service';
|
import { CipherService } from 'jslib/abstractions/cipher.service';
|
||||||
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||||||
@@ -34,14 +32,14 @@ export class ChangePasswordComponent extends BaseChangePasswordComponent {
|
|||||||
rotateEncKey = false;
|
rotateEncKey = false;
|
||||||
currentMasterPassword: string;
|
currentMasterPassword: string;
|
||||||
|
|
||||||
constructor(apiService: ApiService, i18nService: I18nService,
|
constructor(i18nService: I18nService,
|
||||||
cryptoService: CryptoService, messagingService: MessagingService,
|
cryptoService: CryptoService, messagingService: MessagingService,
|
||||||
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
||||||
platformUtilsService: PlatformUtilsService, folderService: FolderService,
|
platformUtilsService: PlatformUtilsService, policyService: PolicyService,
|
||||||
cipherService: CipherService, syncService: SyncService,
|
private folderService: FolderService, private cipherService: CipherService,
|
||||||
policyService: PolicyService, router: Router) {
|
private syncService: SyncService, private apiService: ApiService, ) {
|
||||||
super(apiService, i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
super(i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
||||||
platformUtilsService, folderService, cipherService, syncService, policyService, router);
|
platformUtilsService, policyService);
|
||||||
}
|
}
|
||||||
|
|
||||||
async rotateEncKeyClicked() {
|
async rotateEncKeyClicked() {
|
||||||
|
|||||||
Reference in New Issue
Block a user