Implemented XML Formatter and simplified structure of XML tools #229

Merged
bema merged 33 commits from ref/simplify_xml_tools into master 2023-06-21 14:32:02 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit cd2873f349 - Show all commits

View File

@@ -22,7 +22,7 @@ function clear() {
<template> <template>
<div id="layout" class="flex flex-col w-full h-full gap-4"> <div id="layout" class="flex flex-col w-full h-full gap-4">
<div id="toolbar" class= "flex flex-col gap-4 items-center md:flex-row place-content-between"> <div id="toolbar" class= "flex flex-col gap-4 items-center lg:flex-row place-content-between">
<span class="dark:text-slate-100">JSON Formatter</span> <span class="dark:text-slate-100">JSON Formatter</span>
<div class="space-x-2"> <div class="space-x-2">
<InsertTemplateComponent pretty-name="JSON" @update:defaultData="(data: string) => setTextFieldValue(data)"></InsertTemplateComponent> <InsertTemplateComponent pretty-name="JSON" @update:defaultData="(data: string) => setTextFieldValue(data)"></InsertTemplateComponent>

View File

@@ -22,7 +22,7 @@ function clear() {
<template> <template>
<div id="layout" class="flex flex-col w-full h-full gap-4"> <div id="layout" class="flex flex-col w-full h-full gap-4">
<div id="toolbar" class= "flex flex-col gap-4 items-center md:flex-row place-content-between"> <div id="toolbar" class= "flex flex-col gap-4 items-center lg:flex-row place-content-between">
<span class="dark:text-slate-100">XML Formatter</span> <span class="dark:text-slate-100">XML Formatter</span>
<div class="space-x-2"> <div class="space-x-2">
<InsertTemplateComponent pretty-name="XML" @update:defaultData="(data: string) => setTextFieldValue(data)"></InsertTemplateComponent> <InsertTemplateComponent pretty-name="XML" @update:defaultData="(data: string) => setTextFieldValue(data)"></InsertTemplateComponent>