@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
19 lines (17 loc) • 587 B
TypeScript
/// <reference types="react" />
import { HtmlProps } from '@docsvision/web/core/component/HtmlProps';
export declare enum InputMaskLabelLocation {
Top = 0,
Bottom = 1
}
export interface IInputMaskLabelProps extends HtmlProps.span {
location: InputMaskLabelLocation;
visible: boolean;
focus?: boolean;
text?: string;
isError?: boolean;
errorText?: string;
value?: string;
}
/** Стилевой заголовок для поля с маской { @see InputMask }. */
export declare function InputMaskLabel(props: IInputMaskLabelProps): JSX.Element;