Interface ToolbarArguments

interface ToolbarArguments {
    aria-label?: string;
    aria-labelledby?: string;
    orientation?: "horizontal" | "vertical";
}

Hierarchy

Properties

aria-label?: string

Alternative to aria-labelledby when the element with the label text is not available.

aria-labelledby?: string

The id of the element that hold the label text.

orientation?: "horizontal" | "vertical"

Changes keyboard controls to match the orientation of the toolbar.

Horizontal: Left Arrow (Previous), Right Arrow (Next) Vertical: Up Arrow (Previous), Down Arrow (Next)

Default

"horizontal"

Generated using TypeDoc