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

org.butterfaces.component.partrenderer.Constants Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
/*
 * Copyright Lars Michaelis and Stephan Zerhusen 2016.
 * Distributed under the MIT License.
 * (See accompanying file README.md file or copy at http://opensource.org/licenses/MIT)
 */
package org.butterfaces.component.partrenderer;

/**
 * @author Lars Michaelis
 */
public class Constants {

    public static final String INPUT_COMPONENT_MARKER = "butter-input-component";
    public static final String INVALID_STYLE_CLASS = "butter-component-invalid is-invalid";
    public static final String LABEL_STYLE_CLASS = "butter-component-label d-flex mt-2";
    public static final String TOOLTIP_LABEL_CLASS = "butter-component-label-tooltip";
    public static final String REQUIRED_SPAN_CLASS = "butter-component-required";
    public static final String TEXT_AREA_MAXLENGTH_COUNTER_CLASS = "butter-component-maxlength-counter";

    public static final String COMPONENT_STYLE_CLASS = "butter-component";
    public static final String COMPONENT_VALUE_CLASS = "butter-component-value butter-flex-grow";
    public static final String COMPONENT_READONLY_STYLE_CLASS = "butter-component-readonly";

    public static final String BOOTSTRAP_FORM_CONTROL = "form-control";
    public static final String BOOTSTRAP_ERROR = "has-error";
    public static final String BOOTSTRAP_CONTAINER = "form-group d-flex";

    public static final String COMPONENT_VALUE_HIDDEN = "butter-component-value-hiddenLabel";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy