com.github.fluorumlabs.disconnect.vaadin.elements.DrawerToggleElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-vaadin Show documentation
Show all versions of disconnect-vaadin Show documentation
Vaadin components bindings for Disconnect Zero
The newest version!
package com.github.fluorumlabs.disconnect.vaadin.elements;
import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.vaadin.Vaadin;
import org.teavm.jso.JSProperty;
import javax.annotation.Nullable;
/**
* The Drawer Toggle component controls the drawer in App Layout component.
*
* <vaadin-app-layout>
* <vaadin-drawer-toggle slot="navbar">Toggle drawer</vaadin-drawer-toggle>
* </vaadin-app-layout>
*
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
module = "@vaadin/vaadin-app-layout/theme/lumo/vaadin-drawer-toggle.js"
)
public interface DrawerToggleElement extends ButtonElement {
static String TAGNAME() {
return "vaadin-drawer-toggle";
}
@Nullable
@JSProperty
String getAriaLabel();
@JSProperty
void setAriaLabel(String ariaLabel);
}