mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-15 05:58:52 +01:00
refactor: layout & form
This commit is contained in:
parent
da3cd140f5
commit
da8bcf7b32
26 changed files with 877 additions and 671 deletions
|
|
@ -1,23 +1,55 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import {
|
||||
NbActionsModule,
|
||||
NbButtonModule,
|
||||
NbCardModule,
|
||||
NbCheckboxModule, NbDatepickerModule,
|
||||
NbInputModule,
|
||||
NbRadioModule, NbSelectModule,
|
||||
NbUserModule,
|
||||
} from '@nebular/theme';
|
||||
|
||||
import { ThemeModule } from '../../@theme/theme.module';
|
||||
import { FormsRoutingModule } from './forms-routing.module';
|
||||
import { ButtonsModule } from './buttons/buttons.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';
|
||||
import { NbInputModule } from '@nebular/theme';
|
||||
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';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
ThemeModule,
|
||||
NbInputModule,
|
||||
NbCardModule,
|
||||
NbButtonModule,
|
||||
NbActionsModule,
|
||||
NbUserModule,
|
||||
NbCheckboxModule,
|
||||
NbRadioModule,
|
||||
NbDatepickerModule,
|
||||
FormsRoutingModule,
|
||||
ButtonsModule,
|
||||
NbSelectModule,
|
||||
],
|
||||
declarations: [
|
||||
FormsComponent,
|
||||
ButtonsComponent,
|
||||
DefaultButtonsComponent,
|
||||
OutlineButtonsComponent,
|
||||
HeroButtonComponent,
|
||||
ShapeButtonsComponent,
|
||||
SizeButtonsComponent,
|
||||
ActionGroupsComponent,
|
||||
LabeledActionsGroupComponent,
|
||||
ButtonElementsComponent,
|
||||
FormInputsComponent,
|
||||
FormLayoutsComponent,
|
||||
DatepickerComponent,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue