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

org.dominokit.domino.ui.dropdown.DropDownPosition Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.dropdown;

import elemental2.dom.HTMLElement;

public interface DropDownPosition {
    void position(HTMLElement actionsMenu, HTMLElement target);

    DropDownPosition TOP = new DropDownPositionTop();
    DropDownPosition TOP_RIGHT = new DropDownPositionTopRight();
    DropDownPosition TOP_LEFT = new DropDownPositionTopLeft();
    DropDownPosition BOTTOM = new DropDownPositionBottom();
    DropDownPosition BOTTOM_LEFT = new DropDownPositionBottomLeft();
    DropDownPosition BOTTOM_RIGHT = new DropDownPositionBottomRight();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy