ysny.karibu-tools.karibu-tools.0.21.source-code.Buttons.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karibu-tools Show documentation
Show all versions of karibu-tools Show documentation
Karibu-Tools: The Vaadin Missing Utilities
The newest version!
package com.github.mvysny.kaributools
import com.vaadin.flow.component.button.Button
import com.vaadin.flow.component.button.ButtonVariant
/**
* Sets the button as primary. It effectively adds the [ButtonVariant.LUMO_PRIMARY] theme variant.
*/
public fun Button.setPrimary() {
addThemeVariantsCompat(ButtonVariant.LUMO_PRIMARY)
}
// in Vaadin 24, the addThemeVariants no longer comes from GeneratedVaadinButton but rather from HasThemeVariants, but that interface is not in Vaadin 14.
public fun Button.addThemeVariantsCompat(vararg variants: ButtonVariant) {
_Button_addThemeVariants.invoke(this, variants)
}
private val _Button_addThemeVariants = Button::class.java.methods.first { it.name == "addThemeVariants" }