Skip to content

Conversation

@konflux-internal-p02
Copy link

@konflux-internal-p02 konflux-internal-p02 bot commented Oct 23, 2025

This PR contains the following updates:

Package Change Age Confidence
tw-animate-css 1.2.9 -> 1.4.0 age confidence

Release Notes

Wombosvideo/tw-animate-css (tw-animate-css)

v1.4.0

Compare Source

Changelog

902e37a: fix: remove support for prefix, add new export for prefixed version. Closes #​58.
fab2a5b: chore: bump version to 1.4.0 and update dependencies
c20dc32: fix(build): make transform.ts accept two arguments

⚠️ BREAKING CHANGE ⚠️

Support for Tailwind CSS's prefix option was moved to tw-animate-css/prefix because it was breaking the --spacing function. Users requiring prefixes should replace their import:

- import "tw-animate-css";
+ import "tw-animate-css/prefix";

I do not plan to introduce breaking changes like this to non-major releases in the future. But because more people use spacing rather than prefixes, reverting the previous version's (obviously breaking) change seems reasonable.

v1.3.8

Compare Source

Changelog

  • b5ff23a: fix: add support for global CSS variable prefix. Closes #​48
  • 03e5f12: feat: add support for ng-primitives height variables #​56 (thanks @​immohammadjaved)
  • b076cfb: docs: fix various issues in accordion and collapsible docs
  • 9485e33: chore: bump version to 1.3.8 and update dependencies

⚠️ BREAKING CHANGE ⚠️

Adding support for prefixes broke custom spacing. It is recommended that you skip this version if you do not use Tailwind CSS's prefix option, and use v1.4.0 instead. If you are actually using prefixes, you can use a special version supporting prefixes:

- import "tw-animate-css"; /* Version with spacing support */
+ import "tw-animate-css/prefix"; /* Version with prefix support */

I do not plan to fix the incompatibility between the spacing and prefix versions due to time constraints. Feel free to investigate and open a pull request if you manage to fix it.

v1.3.7

Compare Source

Changelog

v1.3.6

Compare Source

Changelog

  • 58f3396: fix: allow changing animation parameters for ready-to-use animations
  • 8313476: chore: update dependencies nd package manager version
  • f81346c: chore: bump version to 1.3.6

Issues fixed

  • #​47: feat: allow developers to change the transition timing function for --animate-accordion/collapsible-* (thanks for your help, @​mikeploythai)

v1.3.5

Compare Source

Changelog

  • b8cc09c: fix: update slide translate calculations to use correct sign for ratio values
  • 69fbfcd: chore: bump version to 1.3.5 and update dependencies

Issues fixed

v1.3.4

Compare Source

Changelog

  • 5012a6b: feat: add logical slide translate utilities (#​39)
  • 041f32f: fix: use default fill-mode none instead of forwards
  • 7f6ad32: chore: bump version to 1.3.4 and update package manager version

Issues fixed

  • #​42: bug: incorrect default value for fill-mode breaking some animations (thanks for your help, @​ollema)

New features

This release adds logical start, end slide utilities. Compared to left and right, these take the text direction into consideration, allowing you remove some redundancy:

- ltr:slide-in-from-left-4 ltr:slide-out-to-left-4 rtl:slide-in-from-right-4 rtl:slide-out-to-right-4
+ slide-in-from-start-4 slide-out-to-start-4

v1.3.3

Compare Source

[!CAUTION]
Bug #​42 was introduced in this version, so you might want to skip this version.

Changelog

  • ccfe1ec: feat: add support for Kobalte UI variables to accordion and collapsible animations #​37
  • 919999e: fix: add CSS variables for animation utilities #​40
  • ffce555: chore: bump version to 1.3.3

Issues fixed

  • #​34: Setting fill-mode-* has no effect
  • #​36 (partially): Support Arbitrary Custom Properties for Accordion Animations

v1.3.2

Compare Source

Changelog

  • 493b3aa: fix: duration not applied due to property initial value
  • e7b4aac: chore: bump version to 1.3.2

v1.3.1

Compare Source

Changelog

  • e59dfed: fix: add @​‌property declarations for animation variables to enhance inheritance control #​33 (thanks @​jinyongp)
  • 28156a2: fix: move @​‌property declarations to the :root level
  • 6c0f52e: chore: bump version to 1.3.1 and update dependencies

Issues fixed

  • #​32: Animation on parent element unexpectedly inherits to all child elements

v1.3.0

Compare Source

Changelog

  • 6dba4b0: fix: align syntax with Tailwind CSS syntax
  • c82b41c: docs: add tree-shaking note
  • 33b4e50: feat: add animation-duration-* utility
  • a6fcd13: chore: bump version to 1.3.0 and update dependencies
New features

I've decided to add a animation-duration-* utility which should be used to define animation durations in the future. For now, duration-* is still supported to remain compatible with tailwindcss-animate.

This utility was added so you can define different durations for transitions and animations. Probably not something many people have a use case for, but I didn't want to define an own duration-* utility to actually set animation-duration. Please open an issue if you prefer to keep using duration-* instead of animation-duration-*.

Breaking Change

zoom-in-* and zoom-out-* utilities now require ratios to be specified differently:

- zoom-in-[1/2]
+ zoom-in-1/2

I don't expect this to affect many people, which is why this is not a major release. If you are affected by this, let me know.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

Signed-off-by: konflux-internal-p02 <170854209+konflux-internal-p02[bot]@users.noreply.github.com>
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 12:11
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 12:16
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 16:12
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 16:17
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 20:10
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 20:15
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 20:29
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 23, 2025 20:34
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Oct 23, 2025
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Oct 24, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch October 24, 2025 00:10
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Dec 29, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 29, 2025 20:45
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Dec 29, 2025
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 29, 2025 20:53
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 00:47
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 00:56
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 04:40
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 04:45
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 08:41
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 08:47
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed Dec 30, 2025
@konflux-internal-p02 konflux-internal-p02 bot deleted the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 12:45
@konflux-internal-p02 konflux-internal-p02 bot restored the konflux/mintmaker/rhoai-2.24/tw-animate-css-1.x-lockfile branch December 30, 2025 12:51
@konflux-internal-p02 konflux-internal-p02 bot changed the title chore(deps): update dependency tw-animate-css to v1.4.0 - autoclosed chore(deps): update dependency tw-animate-css to v1.4.0 Dec 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants