UNPKG

@octopusdeploy/design-system-components

Version:
25 lines (24 loc) 1.23 kB
/** The height shared by design-system form field inputs (TextField, Select, etc.). */ export declare const formInputHeight = "2.375rem"; /** TextField, Textarea and Select shared input styles */ export declare const inputStyles: string; export declare const inputErrorStyles: string; export declare const inputSuccessStyles: string; export declare const inputDisabledStyles: string; export declare const inputReadOnlyStyles: string; /** * Field-container counterparts of the input state styles above, for fields where a container * wraps the input together with adornments (e.g. Textarea's toolbar slot) and therefore owns * the border, focus ring, and state treatment. Keep these in lockstep with the input styles so * adorned and plain fields look identical. */ export declare const fieldContainerStyles: string; export declare const fieldContainerErrorStyles: string; export declare const fieldContainerSuccessStyles: string; export declare const fieldContainerDisabledStyles: string; export declare const fieldContainerReadOnlyStyles: string; export declare const dropdownContainerStyles: string; export declare const actionsDividerStyles: string; export declare const suffixSharedStyles: { paddingRight: string; };