This release adds support for overriding the label in select options of the select menu.
Example:
py
bot.command(name="paginator", description="Paginator example", scope=924871439776108544)
async def paginator_example(ctx: CommandContext):
await Paginator(
client=bot,
ctx=ctx,
pages=[
Page(embeds=Embed(description="no title lol")),
Page(embeds=Embed(description="no title but shows 'hello' in label"), title="hello"),
],
).run()
What's Changed
* feat: new title arg in Page to override label in select by Toricane in https://github.com/interactions-py/paginator/pull/41
**Full Changelog**: https://github.com/interactions-py/paginator/compare/2.0.1...2.0.2