mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-08 02:06:47 +00:00

* es lint * modify tsconfig, auto lint some stuff * lint * lint * lint * lint * html ts lint * lint * lint, tsconfig * fix project delete, state table * eslint config, remove cnslHint directive * mfa selector, info row fixes * lint * fix login policy, granted orgs table state, lint Co-authored-by: Florian Forster <florian@caos.ch>
14 lines
538 B
TypeScript
14 lines
538 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { AbstractControl } from '@angular/forms';
|
|
import { PasswordComplexityPolicy } from 'src/app/proto/generated/zitadel/policy_pb';
|
|
|
|
@Component({
|
|
selector: 'cnsl-password-complexity-view',
|
|
templateUrl: './password-complexity-view.component.html',
|
|
styleUrls: ['./password-complexity-view.component.scss'],
|
|
})
|
|
export class PasswordComplexityViewComponent {
|
|
@Input() public password: AbstractControl | null = null;
|
|
@Input() public policy!: PasswordComplexityPolicy.AsObject;
|
|
}
|