feat(editor): Add missing extension methods for expressions (#8845)

This commit is contained in:
Elias Meire
2024-03-20 12:05:54 +01:00
committed by GitHub
parent 7176cd1407
commit 5e84c2ab89
28 changed files with 809 additions and 39 deletions

View File

@@ -44,6 +44,7 @@ export const useNDVStore = defineStore(STORES.NDV, {
},
},
focusedMappableInput: '',
focusedInputPath: '',
mappingTelemetry: {},
hoveringItem: null,
draggable: {
@@ -268,5 +269,8 @@ export const useNDVStore = defineStore(STORES.NDV, {
});
}
},
setFocusedInputPath(path: string) {
this.focusedInputPath = path;
},
},
});