import { ComponentShell } from "../ComponentShell"; import { TextEditorMetadata } from "../texteditor/texteditor.metadata"; import { IComponentMapManager } from "../IComponentMapManager"; import { IExpressionManager } from "../IExpressionManager"; import { IHttpManager } from "../IHttpManager"; import { INavigationService } from "../INavigationService"; import { ValidationRule } from "../validation-rule"; export interface TTextEditorButton { buttonName: string; buttonIcon: string; click$: Array; } export declare class TextEditorShell extends ComponentShell { private _formName; formName: string; private _key; key: string; private _value; value: any; private _value$; value$: string; private _label; label: string; private _label$; label$: string; private _textField; textField: string; private _textField$; textField$: string; private _hint; hint: string; private _hint$; hint$: string; private _mask; mask: string; private _mask$; mask$: string; private _placeholder; placeholder: string; private _placeholder$; placeholder$: string; private _disabled; disabled: boolean; private _disabled$; disabled$: string; private _visible; visible: boolean; private _visible$; visible$: string; private _required; required: boolean; private _required$; required$: string; private _readonly; readonly: boolean; private _readonly$; readonly$: string; private _tabindex; tabindex: number; private _order; order: number; private _buttons; buttons: Array; private _validationRules; validationRules: Array; constructor(formName: string, textboxMetadata: TextEditorMetadata, componentMapManager: IComponentMapManager, expressionManager: IExpressionManager, httpManager: IHttpManager, navigationService: INavigationService); getFormName(): string; getControlName(): string; onAddExpression(): void; objectMap(): void; getShellSchema(): any; getShellTypeName(): string; /** * Form post edilirken gönderilecek mi? */ readonly isFormValue: boolean; /** * Form post edilirken gönderilecek veri */ getFormValue(): any; readonly isValid: boolean; getValidationErrors(): string[]; onClick(buttonName: string): void; post(propertyName: string, value: any): void; }