1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 22:18:03 +00:00

Moved UI methods to their own struct

This commit is contained in:
2023-02-21 17:47:21 +01:00
parent 5b1f410a50
commit 44c94d0d72
14 changed files with 124 additions and 74 deletions

View File

@ -1,5 +1,5 @@
<script>
import { OpenDirectory } from '$wails/go/app/App';
import { OpenDirectory } from '$wails/go/ui/UI';
export let value = '';
export let id = '';

View File

@ -3,7 +3,7 @@
</script>
<script>
import { Beep } from '$wails/go/app/App';
import { Beep } from '$wails/go/ui/UI';
import { fade, fly } from 'svelte/transition';
import Icon from './icon.svelte';

View File

@ -1,7 +1,8 @@
<script>
import busy from '$lib/stores/busy';
import { connections } from '$lib/stores/connections';
import { EnterText, Hosts, RenameCollection } from '$wails/go/app/App';
import { Hosts, RenameCollection } from '$wails/go/app/App';
import { EnterText } from '$wails/go/ui/UI';
import { EventsOn } from '$wails/runtime/runtime';
import { onMount } from 'svelte';
import CollectionDetail from './collection/index.svelte';