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

org.dominokit.domino.ui.forms.FieldStyle Maven / Gradle / Ivy

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

public interface FieldStyle {

    FieldStyle ROUNDED = () -> "rounded";

    FieldStyle LINED = () -> "lined";


    String getStyle();

    default void apply(ValueBox valueBox){
        FieldStyle fieldStyle = valueBox.getFieldStyle();
        valueBox.removeCss(fieldStyle.getStyle());
        valueBox.css(getStyle());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy