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

  • OptionalclassName?: string

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

    'button'

  • OptionalnextClassName?: string

    The class name of the next button.

    'is-next'

  • OptionalnextLabel?: string

    The text label of the next button.

    'Next'

  • OptionalnextTitle?: string

    The title attribute value of the next button.

    'Go to next'

  • OptionalpreviousClassName?: string

    The class name of the previous button.

    'is-previous'

  • OptionalpreviousLabel?: string

    The text label of the previous button.

    'Previous'

  • OptionalpreviousTitle?: string

    The title attribute value of the previous button.

    'Go to previous'

  • Optionaltemplate?: Template

    Render function for a single button.