Skip to content

Commit

Permalink
Updating changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Nov 23, 2021
1 parent 22830c9 commit 16cb990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@ Framer Motion adheres to [Semantic Versioning](http://semver.org/).

- Fixing animating to CSS variables with `SVGElement`. [Issue](https://github.com/framer/motion/issues/1334)
- Unsetting `z-index` for resting `Reorder.Item` components. [Issue](https://github.com/framer/motion/issues/1313)
- Forward native drag listeners to `draggable` elements. [Issue](https://github.com/framer/motion/issues/1248)

## [5.3.2] 2021-11-23

Expand Down
1 change: 1 addition & 0 deletions src/render/dom/utils/filter-props.ts
Expand Up @@ -43,6 +43,7 @@ export function filterProps(
shouldForward(key) ||
(forwardMotionProps === true && isValidMotionProp(key)) ||
(!isDom && !isValidMotionProp(key)) ||
// If trying to use native HTML drag events, forward drag listeners
(props["draggable"] && key.startsWith("onDrag"))
) {
filteredProps[key] = props[key]
Expand Down

0 comments on commit 16cb990

Please sign in to comment.