UNPKG

rb-data-table

Version:
52 lines 2.4 kB
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { Ng2CompleterModule } from 'ng2-completer'; import { CellComponent } from './cell.component'; import { CustomEditComponent } from './cell-edit-mode/custom-edit.component'; import { DefaultEditComponent } from './cell-edit-mode/default-edit.component'; import { EditCellComponent } from './cell-edit-mode/edit-cell.component'; import { CheckboxEditorComponent } from './cell-editors/checkbox-editor.component'; import { CompleterEditorComponent } from './cell-editors/completer-editor.component'; import { InputEditorComponent } from './cell-editors/input-editor.component'; import { SelectEditorComponent } from './cell-editors/select-editor.component'; import { TextareaEditorComponent } from './cell-editors/textarea-editor.component'; import { CustomViewComponent } from './cell-view-mode/custom-view.component'; import { ViewCellComponent } from './cell-view-mode/view-cell.component'; var CELL_COMPONENTS = [ CellComponent, CustomEditComponent, DefaultEditComponent, EditCellComponent, CheckboxEditorComponent, CompleterEditorComponent, InputEditorComponent, SelectEditorComponent, TextareaEditorComponent, CustomViewComponent, ViewCellComponent, ]; var CellModule = /** @class */ (function () { function CellModule() { } CellModule = __decorate([ NgModule({ imports: [ CommonModule, FormsModule, Ng2CompleterModule, ], declarations: CELL_COMPONENTS.slice(), exports: CELL_COMPONENTS.slice(), }) ], CellModule); return CellModule; }()); export { CellModule }; //# sourceMappingURL=cell.module.js.map