@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
41 lines (40 loc) • 1.28 kB
TypeScript
import { FormPropertyChangeObject, InputBaseProperty } from '../../../property-panel';
export declare class CheckBoxProperty extends InputBaseProperty {
constructor(componentId: string, designerHostService: any);
getEditorProperties(propertyData: any): {
properties: {
readonly: {
description: string;
title: string;
editor: {
type: string;
propertyTypes: any;
};
};
required: {
description: string;
title: string;
type: string;
editor: {
type: string;
propertyTypes: any;
};
};
placeholder: {
description: string;
title: string;
type: string;
};
};
setPropertyRelates(changeObject: any, parameters: any): void;
description: string;
title: string;
type: string;
$converter: string;
parentPropertyID: string;
};
/**
* 切换绑定属性
*/
changeBindingField(propertyData: any, changeObject: FormPropertyChangeObject, parameters?: any): any;
}