All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.vaadin.elements.NotificationCard Maven / Gradle / Ivy

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 nameDescription
overlayThe notification container
contentThe 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"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy