merge new tools #244

Merged
widlam merged 55 commits from master into release 2023-09-05 11:15:22 +02:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit cab5602f78 - Show all commits

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
</script>
<template>
<div class="flex flex-row">
<button class="grow-0 tool-button ">&lt;</button>
<div id="content" class="w-1/3">fdfgjoejgioej</div>
</div>
</template>

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import xmlInputFieldComponent from '@/components/xml/XmlInputFieldComponent.vue';
import xmlOutputFieldComponent from '@/components/xml/XmlOutputFieldComponent.vue';
import tooltipController from '@/components/xml/tooltips/TooltipController.vue';
import { ref } from 'vue';
@@ -16,5 +17,6 @@ const query = ref('');
<xmlInputFieldComponent stylized-name="XPath" :data="query" @update="(data) => {query = data}"></xmlInputFieldComponent>
</div>
<xmlOutputFieldComponent tool="xpath" :xml="xml" :query="query"></xmlOutputFieldComponent>
<tooltipController></tooltipController>
</div>
</template>