com.vaadin.polymer.paper.event.PaperResponsiveChangeEvent Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-drawer-panel project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.paper.event;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JavaScriptObject;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
/**
* Fired when the narrow layout changes.
*/
@JsType(isNative=true)
public interface PaperResponsiveChangeEvent extends Event {
@JsOverlay static final String NAME = "paper-responsive-change";
@Override
@JsProperty
Detail getDetail();
@JsType(isNative=true)
interface Detail extends Event.Detail {
/**
*
*/
@JsProperty JavaScriptObject getDetail();
/**
* narrow: true if the panel is in narrow layout.
*/
@JsProperty boolean getNarrow();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy