We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like button style is always contained regardless what its value is. Button color (button_type) is correct though.
contained
import panel as pn from panel_material_ui import * pn.extension(template='material', defer_load=True) button_styles = ['contained', 'outlined', 'text'] button_types = ['primary', 'secondary', 'error', 'info', 'success', 'warning'] for s in button_styles: for t in button_types: button = Button(name=f"{s}-{t}", button_type=t, button_style = s) button.servable()
The text was updated successfully, but these errors were encountered:
Fixed with #10
Sorry, something went wrong.
No branches or pull requests
Looks like button style is always
contained
regardless what its value is. Button color (button_type) is correct though.The text was updated successfully, but these errors were encountered: