Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugos68 committed Jan 1, 2025
2 parents 7d33015 + 23ddeb7 commit 6b3adc0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/floating-ui-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @skeletonlabs/floating-ui-svelte

## 0.3.5

### Patch Changes

- e47dcb7: Fix typo in internal imports.

## 0.3.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/floating-ui-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skeletonlabs/floating-ui-svelte",
"version": "0.3.4",
"version": "0.3.5",
"scripts": {
"build": "svelte-package --input ./src",
"build:watch": "pnpm build --watch",
Expand Down
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 6b3adc0

Please sign in to comment.