Skip to content

Commit

Permalink
Update PanelMenu doc and d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Mar 5, 2021
1 parent 0d22783 commit 77416f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/panelmenu/PanelMenu.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import * as React from 'react';
import {MenuItem} from '../menuitem/MenuItem';
import { MenuItem } from '../menuitem/MenuItem';

interface PanelMenuProps {
id?: string;
model?: MenuItem[];
style?: object;
className?: string;
multiple?: boolean;
}

export class PanelMenu extends React.Component<PanelMenuProps,any> {}
export class PanelMenu extends React.Component<PanelMenuProps, any> { }
6 changes: 6 additions & 0 deletions src/showcase/panelmenu/PanelMenuDoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,12 @@ const items = [
<td>null</td>
<td>Style class of the component.</td>
</tr>
<tr>
<td>multiple</td>
<td>boolean</td>
<td>false</td>
<td>Whether multiple tabs can be activated at the same time or not.</td>
</tr>
</tbody>
</table>
</div>
Expand Down

0 comments on commit 77416f7

Please sign in to comment.