From dda367a70bb00388f7359f6ffb55a1b7ec4857ea Mon Sep 17 00:00:00 2001 From: youki Date: Wed, 8 Sep 2021 14:25:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20refactor:=20?= =?UTF-8?q?=E8=A1=A5=E5=85=85=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/editor/editor.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/typescript/base/single/editor/editor.ts b/typescript/base/single/editor/editor.ts index 9841fd977..2ac35a470 100644 --- a/typescript/base/single/editor/editor.ts +++ b/typescript/base/single/editor/editor.ts @@ -3,6 +3,16 @@ import { Single } from "../single"; export declare class Editor extends Single { static xtype: string; + props: { + inputType?: string; + validationChecker?: Function; + quitChecker?: Function + allowBlank?: boolean; + watermark?: string; + errorText?: string | ((v: string) => string); + autocomplete?: string; + } & Single['props'] + static EVENT_CHANGE: string; static EVENT_FOCUS: string; static EVENT_BLUR: string;