UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

18 lines (17 loc) 619 B
import { PropertyChangeObject } from '../../../property-panel'; export declare function useCellEditable(designerHostService: any, viewModelId: string): { getCellEditableProperties: (propertyData: any) => { title: string; description: string; properties: { fieldEditable: { title: string; type: string; description: string; refreshPanelAfterChanged: boolean; readonly: any; }; }; setPropertyRelates(changeObject: PropertyChangeObject, data: any): Promise<void>; }; };