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