Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-css-transitions

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-css-transitions - npm Package Versions

134

3.0.0

Diff

Changelog

Source

v3.0.0

🚨 Breaking Changes
  • Drop Node.js 10 support (#69)
🏗 Chores
  • update ember-modifier to v3 (#68)
  • move ember-cli-htmlbars to devDependencies (#67)
  • replace Travis with GH Actions (#71)
  • update ember-cli project and dependencies
miguelcobain
published 2.1.1 •

miguelcobain
published 2.1.0 •

Changelog

Source

v2.1.0

🏗 Chores
  • update ember-modifier to v2 (#45)
miguelcobain
published 2.0.0 •

Changelog

Source

v2.0.0

🚨 Breaking Changes
  • The timings and class names have changed to conform vue's transitions. The main advantage is the excellent interoperability with popular css libraries like TailwindCSS or Animate.css. Here is a before and after example of a style were were using on the docs.

Before:

.example-enter {
  opacity: 0;
}

.example-enter.example-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.example-leave {
  opacity: 1;
}

.example-leave.example-leave-active {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

After:

/* initial state */
.example-enter,
.example-leave-to {
  opacity: 0;
}

/* final state */
.example-enter-to,
.example-leave {
  opacity: 1;
}

/* easings */
.example-enter-active,
.example-leave-active {
  transition: opacity 0.5s ease-in;
}

Check the documentation to understand exactly what has changed and how you should update your styles: http://peec.github.io/ember-css-transitions/docs/insert-destroy

✨ Features
  • You can now pass in custom class names.
miguelcobain
published 1.1.0 •

Changelog

Source

v1.1.0

✨ Features
  • there is now an isEnabled argument that enables/disables animation
🐛 Bugfixes
  • fixes various failures when an element is removed soon after it is added
miguelcobain
published 1.0.1 •

miguelcobain
published 1.0.0 •

Changelog

Source

v1.0.0

🚨 Breaking Changes
  • Addon no longer provides a mixin or component. A modifier is now provided to accomplish the same things as previously and also it is much more in line with the Octane programming model.
  • You'll need at least ember 3.8
miguelcobain
published 0.1.16 •

miguelcobain
published 0.1.15 •

miguelcobain
published 0.1.14 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc