@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
15 lines (14 loc) • 389 B
TypeScript
import { Ref } from "vue";
export declare function useComboTreeSearch(options: {
comboEditorRef: any;
dataSource: any;
searchFields: Ref<any>;
originalValue: any;
showPopover: any;
flatTreeNodes: any;
comboTreeRef: any;
}, idField: string): {
onValueChange: ($event: any) => void;
resetDataSource: () => void;
setupCompositionEvents: () => void;
};