Skip to content

Commit 6b3adc0

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 7d33015 + 23ddeb7 commit 6b3adc0

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

packages/floating-ui-svelte/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @skeletonlabs/floating-ui-svelte
22

3+
## 0.3.5
4+
5+
### Patch Changes
6+
7+
- e47dcb7: Fix typo in internal imports.
8+
39
## 0.3.4
410

511
### Patch Changes

packages/floating-ui-svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@skeletonlabs/floating-ui-svelte",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"scripts": {
55
"build": "svelte-package --input ./src",
66
"build:watch": "pnpm build --watch",

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)