Skip to content

Commit e47dcb7

Browse files
authored
Bugfix: Fix internal typo (#148)
* Fix typo in internal imports * Fix typo in internal imports
1 parent b01f350 commit e47dcb7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.changeset/tricky-grapes-divide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@skeletonlabs/floating-ui-svelte": patch
3+
---
4+
5+
Fix typo in internal imports.

packages/floating-ui-svelte/src/hooks/use-dismiss.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
isEventTargetWithin,
1414
isRootElement,
1515
} from "../internal/dom.js";
16-
import type { FloatingContext } from "./useFloating.svelte.js";
16+
import type { FloatingContext } from "./use-floating.svelte.js";
1717

1818
const bubbleHandlerKeys = {
1919
pointerdown: "onpointerdown",

packages/floating-ui-svelte/src/hooks/use-hover.svelte.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import {
77
} from "../internal/dom.js";
88
import { noop } from "../internal/noop.js";
99
import type { OpenChangeReason } from "../internal/types.js";
10-
import type { FloatingContext } from "./useFloating.svelte.js";
11-
import type { ElementProps } from "./useInteractions.svelte.js";
10+
import type { FloatingContext } from "./use-floating.svelte.js";
11+
import type { ElementProps } from "./use-interactions.svelte.js";
1212

1313
interface DelayOptions {
1414
/**

0 commit comments

Comments
 (0)