com.github.fluorumlabs.disconnect.vaadin.elements.NotificationCard 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.ThemableMixin;
import js.web.dom.HTMLElement;
/**
* The container element for the notification
*
* Styling
* The following shadow DOM parts are available for styling:
*
*
*
* Part name Description
*
*
* overlay
The notification container
* content
The content of the notification
*
*
* See
* ThemableMixin – how to apply styles for shadow parts
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
symbols = "NotificationCard",
module = "@vaadin/vaadin-notification/theme/lumo/vaadin-notification.js"
)
public interface NotificationCard extends HTMLElement, ThemableMixin {
static String TAGNAME() {
return "vaadin-notification-card";
}
}