There’s no configuration on the component itself - but the component has a writeable “page” property and a “pageCount” prop giving you the total number. You could pretty easily use that to drive a dropdown:
return [{"value": i, "label": "Page {}".format(i)} for i in range(1, value + 1)]
Or use some buttons to page back and forth, or whatever other control scheme you want to use.
