@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
24 lines (23 loc) • 783 B
TypeScript
import { IWebComponentInstance } from "../../../";
import { VueComponentBase } from "../../VueComponentBase";
import { IAppDescriptionInput } from "./IAppDescriptionInput";
export declare class AppDescriptionInput extends VueComponentBase implements IAppDescriptionInput, IWebComponentInstance {
description: string;
maximumLength: number;
dark: boolean;
onDescriptionChanged: (title: string) => void;
private omniaUxLoc;
private appPolicyValidationState;
private fieldClasses;
private hint;
private countDown;
private minLength;
private error;
private errorMessage;
private isFocus;
created(): void;
mounted(): void;
checkDescription(): void;
private getValidationRules;
render(): VueTsxSupport.JSX.Element;
}