Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x | import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { DragDropModule } from '@angular/cdk/drag-drop';
import { UppBaseModule } from '@unpispas/upp-base';
import { UppWdgtModule } from '@unpispas/upp-wdgt';
import { UppDataModule } from '@unpispas/upp-data';
import { UppCategoryEditComponent } from '../components/edit/upp-edit';
import { UppCategoryViewComponent } from '../components/view/upp-view';
import { UppOptionEditComponent } from '../components/option/edit/upp-edit';
import { UppCategoryBriefComponent } from '../components/brief/upp-brief';
import { UppOptionViewComponent } from '../components/option/view/upp-view';
@NgModule({
declarations: [
UppCategoryEditComponent,
UppCategoryViewComponent,
UppOptionEditComponent,
UppCategoryBriefComponent,
UppOptionViewComponent
],
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
IonicModule,
DragDropModule,
UppBaseModule,
UppWdgtModule,
UppDataModule
],
exports: [
UppCategoryEditComponent,
UppCategoryViewComponent,
UppCategoryBriefComponent
],
providers: [],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
})
export class FeatureCategoryModule {}
|