@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
37 lines (36 loc) • 1.21 kB
TypeScript
import { DesignerComponentInstance } from '../../../designer';
import { InputBaseProperty } from "../../../property-panel/src/composition/entity/input-base-property";
export declare class AvatarProperty extends InputBaseProperty {
constructor(componentId: string, designerHostService: any);
getPropertyConfig(propertyData: any, componentInstance: DesignerComponentInstance): {
type: string;
categories: {};
};
getEditorProperties(propertyData: any): {
properties: {
readonly: {
description: string;
title: string;
editor: any;
};
required: {
description: string;
title: string;
type: string;
editor: any;
visible: boolean;
};
placeholder: {
description: string;
title: string;
type: string;
};
};
setPropertyRelates(changeObject: any, parameters: any): void;
description: string;
title: string;
type: string;
$converter: string;
parentPropertyID: string;
};
}