UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

45 lines (44 loc) 1.43 kB
import { PropertyChangeObject } from '../../../property-panel'; export declare function useSelection(): { getSelection: (propertyData: any, self: any, gridType?: string) => { title: string; $converter: string; parentPropertyID: string; properties: { autoCheckParent?: { visible: boolean; title: string; type: string; description: string; $converter: string; } | undefined; autoCheckChildren?: { visible: boolean; title: string; type: string; description: string; $converter: string; } | undefined; multiSelect: { title: string; type: string; $converter: string; refreshPanelAfterChanged: boolean; }; showCheckbox: { visible: boolean; $converter: string; readonly: boolean; title: string; type: string; refreshPanelAfterChanged: boolean; }; showSelectAll: { visible: boolean; title: string; type: string; }; }; setPropertyRelates(changeObject: PropertyChangeObject, data: any): void; }; };