1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00
Files
browser/libs/components/src/form-field/form-field.module.ts
Oscar Hinton 5a582dfc6f [CL-135] Migrate component library to standalone components (#12389)
* Migrate component library to standalone components

* Fix tests
2024-12-17 17:29:48 -05:00

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 {}