@doku-dev/doku-fragment
Version:
A new Angular UI library that moving away from Bootstrap and built from scratch.
21 lines (20 loc) • 547 B
TypeScript
export declare class StyleUtil {
/**
* Styles the cursor of the input wrapper element.
*/
static setInputWrapperCursorState(props: {
disabled: boolean;
readonly: boolean;
}, options?: {
inputWrapperElement?: HTMLElement;
searchable?: boolean;
}): void;
/**
* Styles the padding of the input wrapper element.
*/
static handleInputWrapperStyle(props: {
inputWrapperElement?: HTMLElement;
multiple?: boolean;
arrowPlacement?: string;
}): void;
}