feat(popover): add popover showcase (#1556)

This commit is contained in:
Dmitry Nehaychik 2018-02-22 20:13:23 +03:00 committed by GitHub
parent ddb63062f5
commit f4cdf4ab22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 269 additions and 0 deletions

View file

@ -11,6 +11,11 @@ import { ModalComponent } from './modals/modal/modal.component';
import { TypographyComponent } from './typography/typography.component';
import { TabsComponent, Tab1Component, Tab2Component } from './tabs/tabs.component';
import { SearchComponent } from './search-fields/search-fields.component';
import { PopoversComponent } from './popovers/popovers.component';
import {
NgxPopoverCardComponent, NgxPopoverFormComponent,
NgxPopoverTabsComponent,
} from './popovers/popover-examples.component';
const components = [
UiFeaturesComponent,
@ -23,6 +28,10 @@ const components = [
Tab1Component,
Tab2Component,
SearchComponent,
PopoversComponent,
NgxPopoverCardComponent,
NgxPopoverFormComponent,
NgxPopoverTabsComponent,
];
@NgModule({
@ -36,6 +45,9 @@ const components = [
],
entryComponents: [
ModalComponent,
NgxPopoverCardComponent,
NgxPopoverFormComponent,
NgxPopoverTabsComponent,
],
})
export class UiFeaturesModule { }