Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 28 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## @wix/interact

### [2.2.2] - 2026-05-04

#### Fixed

- Attach adopted constructed stylesheets to the element's root (`document` or `ShadowRoot`) so dynamically injected CSS applies when Interact runs inside shadow DOM (#173)
- Register sequence effect selectors on the source interaction so sequence steps resolve selectors when the animated target differs from the source element (#173)

#### Changed

- Allow React 19 in `peerDependencies` for `react` and `react-dom` (#194)
- Revise package description and expand npm keywords

#### Added

- Added a Playground app and publish it under `/playground`.

### [2.2.1] - 2026-04-21

#### Added
Expand Down Expand Up @@ -112,6 +128,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## @wix/motion

### [2.1.5] - 2026-05-04

#### Changed

- Revise package description and expand npm keywords

### [2.1.4] - 2026-04-15

#### Fixed
Expand Down Expand Up @@ -166,6 +188,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## @wix/motion-presets

### [1.0.2] - 2026-05-04

#### Changed

- Revise package description and expand npm keywords

### [1.0.1] - 2026-04-15

#### Added
Expand All @@ -176,13 +204,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Fix `fadeIn` for ShuttersIn and GlideIn presets (#177)

### [Unreleased]

#### Changed

- Documentation cleanup (presets, entrance, mouse, ongoing) (#122)
- Move to wix org on GitHub (#126)

### [1.0.0] - 2026-02-13

- Initial release.
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,18 @@
"type": "git",
"url": "git+https://github.com/wix/interact.git"
},
"description": "Monorepo for the Interact animation and interaction libraries - web-native, AI-ready, framework-agnostic.",
"keywords": [
"animation",
"waapi",
"web-animations-api",
"javascript",
"css",
"waapi"
"scroll-driven",
"motion",
"interaction",
"web-components",
"wix"
],
"author": {
"name": "wow!Team",
Expand Down
13 changes: 11 additions & 2 deletions packages/interact/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wix/interact",
"version": "2.2.1",
"description": "A powerful, declarative interaction library for creating engaging web apps.",
"description": "Declarative, configuration-driven interaction library — web-native, AI-ready, and framework-agnostic.",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
Expand Down Expand Up @@ -40,9 +40,18 @@
},
"keywords": [
"animation",
"waapi",
"web-animations-api",
"javascript",
"css",
"waapi"
"scroll-driven",
"motion",
"interaction",
"react",
"web-components",
"declarative",
"config-driven",
"wix"
],
"author": {
"name": "wow!Team",
Expand Down
13 changes: 11 additions & 2 deletions packages/motion-presets/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wix/motion-presets",
"version": "1.0.1",
"description": "Animation presets for @wix/motion",
"description": "Ready-made animation presets for @wix/motion effects — entrance, scroll, pointer, loop, and micro-interactions.",
"license": "MIT",
"main": "dist/cjs/motion-presets.js",
"module": "dist/es/motion-presets.js",
Expand Down Expand Up @@ -29,8 +29,17 @@
"keywords": [
"animation",
"presets",
"motion",
"interact",
"motion"
"waapi",
"web-animations-api",
"javascript",
"css",
"scroll-driven",
"pointer-animation",
"declarative",
"config-driven",
"wix"
],
"author": {
"name": "wow!Team",
Expand Down
14 changes: 9 additions & 5 deletions packages/motion/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wix/motion",
"version": "2.1.4",
"description": "High-performance animation toolkit for the web, powering Wix motion presets and tooling.",
"description": "Low-level, web-first, animation toolkit, with support for triggered, scroll-driven, pointer-tracking, WAAPI & CSS animations.",
"license": "MIT",
"main": "dist/cjs/motion.js",
"module": "dist/es/motion.js",
Expand Down Expand Up @@ -34,10 +34,14 @@
"keywords": [
"animation",
"motion",
"web-animations",
"browser",
"effects",
"typescript"
"javascript",
"css",
"waapi",
"web-animations-api",
"scroll-driven",
"view-timeline",
"pointer-animation",
"wix"
],
"author": {
"name": "wow!Team",
Expand Down
Loading