connection modal

This commit is contained in:
Jan Prochazka
2021-03-04 10:04:34 +01:00
parent a0aa508e8d
commit 593e61abb9
14 changed files with 213 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<script lang="ts">
import registerCommand from '../commands/registerCommand';
import FormButton from '../forms/FormButton.svelte';
import FormSubmit from '../forms/FormSubmit.svelte';
import ModalBase from './ModalBase.svelte';
</script>
<ModalBase {...$$restProps}>
<div slot="header">Add connection</div>
xxx
<div slot="footer" class="flex">
<div class="buttons">
<FormButton value="Test" />
<FormSubmit value="Save" />
</div>
</div>
</ModalBase>
<style>
.buttons {
flex-shrink: 0;
}
</style>