Skip to content

Commit

Permalink
Merge pull request #11 from Tormak9970/dev
Browse files Browse the repository at this point in the history
chore: fixed resolution issue for svelte-dnd-action
  • Loading branch information
Tormak9970 authored Aug 14, 2024
2 parents 9df5244 + 3b9ef82 commit 919ab66
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@tauri-apps/plugin-shell": "2.0.0-beta.8",
"@tauri-apps/plugin-store": "2.0.0-beta.7",
"@tauri-apps/plugin-updater": "^2.0.0-rc.0",
"svelte-dnd-action": "github:Tormak9970/svelte-dnd-action",
"svelte-dnd-action": "github:Tormak9970/svelte-dnd-action#build",
"svelte-gesture": "^0.1.4",
"svelte-spa-router": "^4.0.1"
}
Expand Down
3 changes: 1 addition & 2 deletions src/components/overlays/queue/QueueSongs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
import { DragHandle } from "@icons";
import { inSelectMode } from "@stores/Select";
import { onDestroy, onMount } from "svelte";
import { dragHandle, dragHandleZone, SHADOW_ITEM_MARKER_PROPERTY_NAME } from "svelte-dnd-action";
import { flip } from "svelte/animate";
import type { Unsubscriber } from "svelte/store";
// @ts-expect-error temporary fix until this gets merged
import { dragHandle, dragHandleZone, SHADOW_ITEM_MARKER_PROPERTY_NAME } from "../../../../node_modules/svelte-dnd-action/src/index";
let queueUnsub: Unsubscriber;
Expand Down
3 changes: 1 addition & 2 deletions src/routes/playlists/PlaylistSongs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
import { DragHandle } from "@icons";
import { inSelectMode } from "@stores/Select";
import { onDestroy, onMount } from "svelte";
import { dragHandle, dragHandleZone, SHADOW_ITEM_MARKER_PROPERTY_NAME } from "svelte-dnd-action";
import { flip } from "svelte/animate";
import { get, type Unsubscriber } from "svelte/store";
// @ts-expect-error temporary fix until this gets merged
import { dragHandle, dragHandleZone, SHADOW_ITEM_MARKER_PROPERTY_NAME } from "../../../node_modules/svelte-dnd-action/src/index";
import { isLandscape } from "../../stores/Layout";
let playlistsMapUnsub: Unsubscriber;
Expand Down

0 comments on commit 919ab66

Please sign in to comment.