UNPKG

ng2-smart-table-custom

Version:

Angular Smart Table with inline-validations support

52 lines 2.33 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 { FilterModule } from '../filter/filter.module'; import { CellModule } from '../cell/cell.module'; import { Ng2SmartTableTheadComponent } from './thead.component'; import { ActionsComponent } from './cells/actions.component'; import { ActionsTitleComponent } from './cells/actions-title.component'; import { AddButtonComponent } from './cells/add-button.component'; import { CheckboxSelectAllComponent } from './cells/checkbox-select-all.component'; import { ColumnTitleComponent } from './cells/column-title.component'; import { TitleComponent } from './cells/title/title.component'; import { TheadFitlersRowComponent } from './rows/thead-filters-row.component'; import { TheadFormRowComponent } from './rows/thead-form-row.component'; import { TheadTitlesRowComponent } from './rows/thead-titles-row.component'; var THEAD_COMPONENTS = [ ActionsComponent, ActionsTitleComponent, AddButtonComponent, CheckboxSelectAllComponent, ColumnTitleComponent, TitleComponent, TheadFitlersRowComponent, TheadFormRowComponent, TheadTitlesRowComponent, Ng2SmartTableTheadComponent, ]; var THeadModule = (function () { function THeadModule() { } return THeadModule; }()); THeadModule = __decorate([ NgModule({ imports: [ CommonModule, FormsModule, FilterModule, CellModule, ], declarations: THEAD_COMPONENTS.slice(), exports: THEAD_COMPONENTS.slice(), }) ], THeadModule); export { THeadModule }; //# sourceMappingURL=thead.module.js.map