Sveltekit 2 migration + sveltestrap

This commit is contained in:
nemunaire 2024-01-05 11:02:38 +01:00
commit 54d32e113c
41 changed files with 523 additions and 288 deletions

View file

@ -4,7 +4,7 @@
Container,
Row,
Icon,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import MusiksLastPlayedList from '$lib/components/MusiksLastPlayedList.svelte';
import TrackList from '$lib/components/TrackList.svelte';

View file

@ -5,7 +5,7 @@
Container,
Row,
Icon,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import GongsList from '$lib/components/GongsList.svelte';
</script>

View file

@ -2,7 +2,7 @@
import {
Container,
Icon,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import TrackList from '$lib/components/TrackList.svelte';
</script>

View file

@ -10,7 +10,7 @@
ListGroup,
ListGroupItem,
Spinner,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import { getGong } from '$lib/gong';
import { gongs } from '$lib/stores/gongs';

View file

@ -10,7 +10,7 @@
ListGroup,
ListGroupItem,
Spinner,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import { gongs } from '$lib/stores/gongs';
import { uploadGong } from '$lib/gong';

View file

@ -5,7 +5,7 @@
Container,
Row,
Icon,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import TrackList from '$lib/components/TrackList.svelte';
</script>

View file

@ -2,7 +2,7 @@
import {
Container,
Icon,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import TrackList from '$lib/components/TrackList.svelte';
</script>

View file

@ -10,7 +10,7 @@
ListGroup,
ListGroupItem,
Spinner,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import { getTrack } from '$lib/track';
import { tracks } from '$lib/stores/tracks';

View file

@ -10,7 +10,7 @@
ListGroup,
ListGroupItem,
Spinner,
} from 'sveltestrap';
} from '@sveltestrap/sveltestrap';
import { tracks } from '$lib/stores/tracks';
import { uploadTrack } from '$lib/track';