76 lines
1.6 KiB
Markdown
76 lines
1.6 KiB
Markdown
|
`EllipsisMenu` (component)
|
||
|
==========================
|
||
|
|
||
|
This is a dropdown menu hidden behind a vertical ellipsis icon. When clicked, the inner MenuItems are displayed.
|
||
|
|
||
|
Props
|
||
|
-----
|
||
|
|
||
|
### `label`
|
||
|
|
||
|
- **Required**
|
||
|
- Type: String
|
||
|
- Default: null
|
||
|
|
||
|
The label shown when hovering/focusing on the icon button.
|
||
|
|
||
|
### `children`
|
||
|
|
||
|
- Type: ReactNode
|
||
|
- Default: null
|
||
|
|
||
|
A list of `MenuTitle`/`MenuItem` components
|
||
|
|
||
|
`MenuItem` (component)
|
||
|
======================
|
||
|
|
||
|
`MenuItem` is used to give the item an accessible wrapper, with the `menuitem` role and added keyboard functionality (`onInvoke`).
|
||
|
`MenuItem`s can also be deemed "clickable", though this is disabled by default because generally the inner component handles
|
||
|
the click event.
|
||
|
|
||
|
Props
|
||
|
-----
|
||
|
|
||
|
### `children`
|
||
|
|
||
|
- Type: ReactNode
|
||
|
- Default: null
|
||
|
|
||
|
A renderable component (or string) which will be displayed as the content of this item. Generally a `ToggleControl`.
|
||
|
|
||
|
### `isClickable`
|
||
|
|
||
|
- Type: Boolean
|
||
|
- Default: `false`
|
||
|
|
||
|
Boolean to control whether the MenuItem should handle the click event. Defaults to false, assuming your child component
|
||
|
handles the click event.
|
||
|
|
||
|
### `onInvoke`
|
||
|
|
||
|
- **Required**
|
||
|
- Type: Function
|
||
|
- Default: null
|
||
|
|
||
|
A function called when this item is activated via keyboard ENTER or SPACE; or when the item is clicked
|
||
|
(only if `isClickable` is set).
|
||
|
|
||
|
`MenuTitle` (component)
|
||
|
=======================
|
||
|
|
||
|
`MenuTitle` is another valid Menu child, but this does not have any accessibility attributes associated
|
||
|
(so this should not be used in place of the `EllipsisMenu` prop `label`).
|
||
|
|
||
|
|
||
|
|
||
|
Props
|
||
|
-----
|
||
|
|
||
|
### `children`
|
||
|
|
||
|
- Type: ReactNode
|
||
|
- Default: null
|
||
|
|
||
|
A renderable component (or string) which will be displayed as the content of this item.
|
||
|
|