com.github.fluorumlabs.disconnect.vaadin.elements.GridProElement 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 com.github.fluorumlabs.disconnect.vaadin.elements.mixins.InlineEditingMixin;
import js.web.dom.HTMLElement;
/**
* <vaadin-grid-pro>
is a high quality data grid / data table Web Component with extended
* functionality.
* It extends <vaadin-grid>
and adds extra features on top of the basic ones.
*
* See
* <vaadin-grid>
documentation
* for details.
*
*
<vaadin-grid-pro></vaadin-grid-pro>
*
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
module = "@vaadin/vaadin-grid-pro/theme/lumo/vaadin-grid-pro.js"
)
public interface GridProElement extends HTMLElement, InlineEditingMixin {
static String TAGNAME() {
return "vaadin-grid-pro";
}
}