2017-05-05 15:49:52 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-06-13 20:22:22 +03:00
|
|
|
import {
|
|
|
|
|
NbActionsModule,
|
|
|
|
|
NbButtonModule,
|
|
|
|
|
NbCardModule,
|
|
|
|
|
NbCheckboxModule, NbDatepickerModule,
|
|
|
|
|
NbInputModule,
|
|
|
|
|
NbRadioModule, NbSelectModule,
|
|
|
|
|
NbUserModule,
|
|
|
|
|
} from '@nebular/theme';
|
2017-05-05 15:49:52 +03:00
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2019-06-12 10:38:33 +03:00
|
|
|
import { FormsRoutingModule } from './forms-routing.module';
|
|
|
|
|
import { FormsComponent } from './forms.component';
|
|
|
|
|
import { FormInputsComponent } from './form-inputs/form-inputs.component';
|
|
|
|
|
import { FormLayoutsComponent } from './form-layouts/form-layouts.component';
|
|
|
|
|
import { DatepickerComponent } from './datepicker/datepicker.component';
|
2019-06-13 20:22:22 +03:00
|
|
|
import { ButtonsComponent } from './buttons/buttons.component';
|
|
|
|
|
import { DefaultButtonsComponent } from './buttons/default-buttons/default-buttons.component';
|
|
|
|
|
import { OutlineButtonsComponent } from './buttons/outline-buttons/outline-buttons.component';
|
|
|
|
|
import { HeroButtonComponent } from './buttons/hero-buttons/hero-buttons.component';
|
|
|
|
|
import { ShapeButtonsComponent } from './buttons/shape-buttons/shape-buttons.component';
|
|
|
|
|
import { SizeButtonsComponent } from './buttons/size-buttons/size-buttons.component';
|
|
|
|
|
import { ActionGroupsComponent } from './buttons/action-groups/action-groups.component';
|
|
|
|
|
import { LabeledActionsGroupComponent } from './buttons/labeled-actions-group/labeled-actions-group.component';
|
|
|
|
|
import { ButtonElementsComponent } from './buttons/button-elements/button-elements.component';
|
2017-05-05 15:49:52 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2019-06-12 10:38:33 +03:00
|
|
|
NbInputModule,
|
2019-06-13 20:22:22 +03:00
|
|
|
NbCardModule,
|
|
|
|
|
NbButtonModule,
|
|
|
|
|
NbActionsModule,
|
|
|
|
|
NbUserModule,
|
|
|
|
|
NbCheckboxModule,
|
|
|
|
|
NbRadioModule,
|
|
|
|
|
NbDatepickerModule,
|
2017-05-06 14:52:41 +03:00
|
|
|
FormsRoutingModule,
|
2019-06-13 20:22:22 +03:00
|
|
|
NbSelectModule,
|
2017-05-05 15:49:52 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
2019-06-12 10:38:33 +03:00
|
|
|
FormsComponent,
|
2019-06-13 20:22:22 +03:00
|
|
|
ButtonsComponent,
|
|
|
|
|
DefaultButtonsComponent,
|
|
|
|
|
OutlineButtonsComponent,
|
|
|
|
|
HeroButtonComponent,
|
|
|
|
|
ShapeButtonsComponent,
|
|
|
|
|
SizeButtonsComponent,
|
|
|
|
|
ActionGroupsComponent,
|
|
|
|
|
LabeledActionsGroupComponent,
|
|
|
|
|
ButtonElementsComponent,
|
2019-06-12 10:38:33 +03:00
|
|
|
FormInputsComponent,
|
|
|
|
|
FormLayoutsComponent,
|
|
|
|
|
DatepickerComponent,
|
2017-05-05 15:49:52 +03:00
|
|
|
],
|
|
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class FormsModule { }
|