mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { FormControlModule } from "../form-control";
|
|
import { InputModule } from "../input/input.module";
|
|
import { MultiSelectModule } from "../multi-select/multi-select.module";
|
|
|
|
import { BitErrorSummary } from "./error-summary.component";
|
|
import { BitErrorComponent } from "./error.component";
|
|
import { BitFormFieldComponent } from "./form-field.component";
|
|
import { BitPasswordInputToggleDirective } from "./password-input-toggle.directive";
|
|
import { BitPrefixDirective } from "./prefix.directive";
|
|
import { BitSuffixDirective } from "./suffix.directive";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
FormControlModule,
|
|
InputModule,
|
|
MultiSelectModule,
|
|
|
|
BitErrorComponent,
|
|
BitErrorSummary,
|
|
BitFormFieldComponent,
|
|
BitPasswordInputToggleDirective,
|
|
BitPrefixDirective,
|
|
BitSuffixDirective,
|
|
],
|
|
exports: [
|
|
FormControlModule,
|
|
InputModule,
|
|
MultiSelectModule,
|
|
|
|
BitErrorComponent,
|
|
BitErrorSummary,
|
|
BitFormFieldComponent,
|
|
BitPasswordInputToggleDirective,
|
|
BitPrefixDirective,
|
|
BitSuffixDirective,
|
|
],
|
|
})
|
|
export class FormFieldModule {}
|