docs(components): update menu and breaking changes

This commit is contained in:
Brandy Carney
2018-03-27 16:47:23 -04:00
parent ce5b47ef99
commit 98403fa883
3 changed files with 7 additions and 10 deletions

View File

@ -15,19 +15,18 @@ export class MenuButton {
private custom = true;
@Prop({ context: 'config' }) config: Config;
/**
* Optional property that maps to a Menu's `menuId` prop. Can also be `left` or `right` for the menu side. This is used to find the correct menu to toggle
*/
@Prop() menu: string;
/**
* Automatically hides the content when the corresponding menu is not
* active
* Automatically hides the menu button when the corresponding menu is not active
*/
@Prop() autoHide = true;
@Prop({ context: 'config' }) config: Config;
@Element() el: HTMLElement;
componentWillLoad() {