ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
19 lines (16 loc) • 846 B
text/typescript
import { OverlayModule } from '@angular/cdk/overlay';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { NzButtonModule } from '../button/nz-button.module';
import { NzMenuModule } from '../menu/nz-menu.module';
import { NzDropDownButtonComponent } from './nz-dropdown-button.component';
import { NzDropDownComponent } from './nz-dropdown.component';
import { NzDropDownDirective } from './nz-dropdown.directive';
({
imports : [ CommonModule, OverlayModule, FormsModule, NzButtonModule, NzMenuModule ],
declarations: [ NzDropDownComponent, NzDropDownButtonComponent, NzDropDownDirective ],
exports : [ NzDropDownComponent, NzDropDownButtonComponent, NzDropDownDirective ]
})
export class NzDropDownModule {
}