-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-controls.module.ts
62 lines (59 loc) · 1.64 KB
/
form-controls.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { OverlayModule } from "@angular/cdk/overlay";
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { IconModule } from "@electric/components/icon";
import { UtilityModule } from "@electric/ng-utils";
import { CheckboxComponent } from "./checkbox/checkbox.component";
import { FormFieldComponent } from "./form-field/form-field.component";
import { InputComponent } from "./input/input.component";
import {
LabelComponent,
LabelPostfixDirective,
LabelPrefixDirective,
} from "./label/label.component";
import { RadioGroupComponent } from './radio/radio-group/radio-group.component';
import { RadioComponent } from './radio/radio.component';
import {
SelectComponent,
SelectedValueComponent,
} from './select/select.component';
import { OptionComponent } from './select/option/option.component';
import { OptionListComponent } from './select/option-list/option-list.component';
import { FieldsetComponent } from "./fieldset/fieldset.component";
@NgModule({
imports: [
CommonModule,
IconModule,
OverlayModule,
UtilityModule,
],
declarations: [
CheckboxComponent,
FieldsetComponent,
FormFieldComponent,
InputComponent,
LabelComponent,
LabelPrefixDirective,
LabelPostfixDirective,
RadioGroupComponent,
RadioComponent,
SelectComponent,
SelectedValueComponent,
OptionComponent,
OptionListComponent,
],
exports: [
CheckboxComponent,
FieldsetComponent,
FormFieldComponent,
InputComponent,
LabelComponent,
LabelPrefixDirective,
LabelPostfixDirective,
RadioGroupComponent,
RadioComponent,
SelectComponent,
OptionComponent,
],
})
export class FormControlsModule {}