Skip to content

Commit

Permalink
Bugfix: Fix internal typo (#148)
Browse files Browse the repository at this point in the history
* Fix typo in internal imports

* Fix typo in internal imports
  • Loading branch information
Hugos68 authored Jan 1, 2025
1 parent b01f350 commit e47dcb7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/tricky-grapes-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/floating-ui-svelte": patch
---

Fix typo in internal imports.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
isEventTargetWithin,
isRootElement,
} from "../internal/dom.js";
import type { FloatingContext } from "./useFloating.svelte.js";
import type { FloatingContext } from "./use-floating.svelte.js";

const bubbleHandlerKeys = {
pointerdown: "onpointerdown",
Expand Down
4 changes: 2 additions & 2 deletions packages/floating-ui-svelte/src/hooks/use-hover.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import {
} from "../internal/dom.js";
import { noop } from "../internal/noop.js";
import type { OpenChangeReason } from "../internal/types.js";
import type { FloatingContext } from "./useFloating.svelte.js";
import type { ElementProps } from "./useInteractions.svelte.js";
import type { FloatingContext } from "./use-floating.svelte.js";
import type { ElementProps } from "./use-interactions.svelte.js";

interface DelayOptions {
/**
Expand Down

0 comments on commit e47dcb7

Please sign in to comment.