@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
39 lines (38 loc) • 1.25 kB
TypeScript
import { FormPropertyChangeObject } from "../../../property-panel";
import { InputBaseProperty } from "../../../property-panel/src/composition/entity/input-base-property";
export declare class NumberSpinnerProperty extends InputBaseProperty {
constructor(componentId: string, designerHostService: any);
getEditorProperties(propertyData: any): {
properties: {
readonly: {
description: string;
title: string;
type: string;
editor: {
enableClear: boolean;
editable: boolean;
};
};
disabled: {
description: string;
title: string;
type: string;
visible: boolean;
};
placeholder: {
description: string;
title: string;
type: string;
};
};
setPropertyRelates: any;
description: string;
title: string;
type: string;
$converter: string;
};
/**
* 切换绑定属性
*/
changeBindingField(propertyData: any, changeObject: FormPropertyChangeObject, parameters?: any): any;
}