mirror of
https://github.com/bitwarden/desktop
synced 2026-01-09 20:13:14 +00:00
* Add jslib as a "real" dependency * Move more packages to jslib * Remove some unesessary dev dependencies. * Add back missing preinstall * Revert jslib bump * Fix jslib containing wrong types/node. * Bump jslib * Remove unessesary alias * Remove dummy module
21 lines
875 B
TypeScript
21 lines
875 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
|
import { PasswordGenerationService } from 'jslib-common/abstractions/passwordGeneration.service';
|
|
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
|
|
|
|
import {
|
|
PasswordGeneratorComponent as BasePasswordGeneratorComponent,
|
|
} from 'jslib-angular/components/password-generator.component';
|
|
|
|
@Component({
|
|
selector: 'app-password-generator',
|
|
templateUrl: 'password-generator.component.html',
|
|
})
|
|
export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
|
|
constructor(passwordGenerationService: PasswordGenerationService, platformUtilsService: PlatformUtilsService,
|
|
i18nService: I18nService) {
|
|
super(passwordGenerationService, platformUtilsService, i18nService, window);
|
|
}
|
|
}
|