project map script | semantic parcer

This commit is contained in:
2026-01-01 16:58:21 +03:00
parent a747a163c8
commit 4c6fc8256d
84 changed files with 10178 additions and 537 deletions

View File

@@ -24,6 +24,7 @@
const dispatch = createEventDispatcher();
// [DEF:resolve:Function]
// @PURPOSE: Dispatches the resolution event with the selected mapping.
function resolve() {
if (!selectedTargetUuid) return;
dispatch('resolve', {
@@ -33,14 +34,15 @@
});
show = false;
}
// [/DEF:resolve]
// [/DEF:resolve:Function]
// [DEF:cancel:Function]
// @PURPOSE: Cancels the mapping resolution modal.
function cancel() {
dispatch('cancel');
show = false;
}
// [/DEF:cancel]
// [/DEF:cancel:Function]
</script>
<!-- [SECTION: TEMPLATE] -->
@@ -109,4 +111,4 @@
/* Modal specific styles */
</style>
<!-- [/DEF:MissingMappingModal] -->
<!-- [/DEF:MissingMappingModal:Component] -->