UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

15 lines (14 loc) 1.38 kB
/// <reference types="react" /> import { InputMaskContainer } from '@docsvision/webclient/Helpers/InputMask/components/InputMaskContainer'; import { InputMaskLabel } from '@docsvision/webclient/Helpers/InputMask/components/InputMaskLabel'; import InputMask from 'react-input-mask'; /** Визуальные компоненты {@see InputMask}. */ export declare class InputMaskView { inputMaskContainer: typeof InputMaskContainer; inputMaskLabel: typeof InputMaskLabel; inputMask: typeof InputMask; input: import("react").ForwardRefExoticComponent<Pick< | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alt" | "src" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "capture" | "checked" | "enterKeyHint" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "isError"> & import("react").RefAttributes<HTMLInputElement>>; }