UNPKG

@deepkit/desktop-ui

Version:

Library for desktop UI widgets in Angular 10+

56 lines (52 loc) 1.48 kB
/* * Deepkit Framework * Copyright (C) 2021 Deepkit UG, Marc J. Schmidt * * This program is free software: you can redistribute it and/or modify * it under the terms of the MIT License. * * You should have received a copy of the MIT License along with this program. */ import { NgModule } from '@angular/core'; import { TableCellDirective, TableColumnDirective, TableComponent, TableCustomHeaderContextMenuDirective, TableCustomRowContextMenuDirective, TableHeaderDirective } from './table.component'; import { CommonModule } from '@angular/common'; import { DuiIconModule } from '../icon'; import { DuiSplitterModule } from '../splitter'; import { ScrollingModule } from '@angular/cdk/scrolling'; import { DuiButtonModule } from '../button'; export * from "./table.component"; @NgModule({ exports: [ TableCellDirective, TableColumnDirective, TableHeaderDirective, TableComponent, TableCustomRowContextMenuDirective, TableCustomHeaderContextMenuDirective, ], declarations: [ TableCellDirective, TableColumnDirective, TableHeaderDirective, TableComponent, TableCustomRowContextMenuDirective, TableCustomHeaderContextMenuDirective, ], providers: [], imports: [ CommonModule, DuiIconModule, DuiSplitterModule, ScrollingModule, DuiButtonModule, ], }) export class DuiTableModule { }