Options: {
    className?: string;
    nextClassName?: string;
    nextLabel?: string;
    nextTitle?: string;
    previousClassName?: string;
    previousLabel?: string;
    previousTitle?: string;
    template?: Template;
}

The options for the buttons feature.

Type declaration

  • Optional className?: string

    The shared class name for both buttons (next and previous).

    Default Value

    'button'

  • Optional nextClassName?: string

    The class name of the next button.

    Default Value

    'is-next'

  • Optional nextLabel?: string

    The text label of the next button.

    Default Value

    'Next'

  • Optional nextTitle?: string

    The title attribute value of the next button.

    Default Value

    'Go to next'

  • Optional previousClassName?: string

    The class name of the previous button.

    Default Value

    'is-previous'

  • Optional previousLabel?: string

    The text label of the previous button.

    Default Value

    'Previous'

  • Optional previousTitle?: string

    The title attribute value of the previous button.

    Default Value

    'Go to previous'

  • Optional template?: Template

    Render function for a single button.