mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
Enable directive-class-suffix (#17385)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { FormControlComponent } from "./form-control.component";
|
||||
import { BitHintComponent } from "./hint.component";
|
||||
import { BitHintDirective } from "./hint.directive";
|
||||
import { BitLabelComponent } from "./label.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [BitLabelComponent, FormControlComponent, BitHintComponent],
|
||||
exports: [FormControlComponent, BitLabelComponent, BitHintComponent],
|
||||
imports: [BitLabelComponent, FormControlComponent, BitHintDirective],
|
||||
exports: [FormControlComponent, BitLabelComponent, BitHintDirective],
|
||||
})
|
||||
export class FormControlModule {}
|
||||
|
||||
@@ -9,6 +9,6 @@ let nextId = 0;
|
||||
class: "tw-text-muted tw-font-normal tw-inline-block tw-mt-1 tw-text-xs",
|
||||
},
|
||||
})
|
||||
export class BitHintComponent {
|
||||
export class BitHintDirective {
|
||||
@HostBinding() id = `bit-hint-${nextId++}`;
|
||||
}
|
||||
Reference in New Issue
Block a user