mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[AAE-10102] Storybook stories for Buttons Menu component (#7731)
* Storybook stories for Buttons Menu component * Storybook change button icons * Storybook add isMobile property * [AAE-10102] Storybook reduce module imports * [10102] Fix wrong buttons styling * [10102] Storybook change story name * [10102] Storybook add component documentation table * [AAE-10102] change name of story * [AAE-10102] fix invalid licence header * enable browser protractor run * exclude 2 failing tests + defaultValue: true Co-authored-by: Rafal Szmit <rafal.szmit@hyland.com>
This commit is contained in:
@@ -18,22 +18,21 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import { MaterialModule } from '../material.module';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatMenuModule } from '@angular/material/menu';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
import { ButtonsMenuComponent } from './buttons-menu.component';
|
||||
import { FlexLayoutModule } from '@angular/flex-layout';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
MaterialModule,
|
||||
MatIconModule,
|
||||
MatMenuModule,
|
||||
TranslateModule,
|
||||
FlexLayoutModule
|
||||
],
|
||||
declarations: [
|
||||
ButtonsMenuComponent
|
||||
],
|
||||
exports: [
|
||||
ButtonsMenuComponent
|
||||
]
|
||||
declarations: [ButtonsMenuComponent],
|
||||
exports: [ButtonsMenuComponent, MatIconModule, MatMenuModule, MatButtonModule]
|
||||
})
|
||||
export class ButtonsMenuModule {}
|
||||
|
Reference in New Issue
Block a user