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

Frontend reorganisation

This commit is contained in:
2023-02-14 17:51:00 +01:00
parent f606a4807c
commit 3291bc845f
31 changed files with 165 additions and 148 deletions

View File

@ -1,5 +1,5 @@
<script>
import { inputTypes, resolveKeypath, setValue } from '../../../../utils';
import { inputTypes, resolveKeypath, setValue } from '../../../../lib/utils';
import Icon from '../../../../components/icon.svelte';
import FormInput from '../../../../components/forminput.svelte';

View File

@ -1,6 +1,6 @@
<script>
import Icon from '../../../../components/icon.svelte';
import { input } from '../../../../actions';
import { input } from '../../../../lib/actions';
import Modal from '../../../../components/modal.svelte';
import { CreateIndex } from '../../../../../wailsjs/go/app/App';
import { createEventDispatcher } from 'svelte';

View File

@ -2,9 +2,9 @@
import TabBar from '../../../../components/tabbar.svelte';
import Modal from '../../../../components/modal.svelte';
import Icon from '../../../../components/icon.svelte';
import { views } from '../../../../stores';
import { randomString } from '../../../../utils';
import { input } from '../../../../actions';
import { randomString } from '../../../../lib/utils';
import { input } from '../../../../lib/actions';
import views from '../../../../lib/stores/views';
export let collection;
export let show = false;