Skip to content

Latest commit

 

History

History
79 lines (49 loc) · 2.79 KB

CHANGELOG.MD

File metadata and controls

79 lines (49 loc) · 2.79 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.


[3.1.0] - 2021-06-01

Added

Fixed

  • Set initial width & height of component to null instead of 0, preventing premature initialisation.

[3.0.1] - 2018-09-03

Changed


[3.0.0] - 2018-09-03

Fixed

  • collision on private data-properties by prefixing them with $_elementQueryMixin_. (@e2o in #6) Note: This is a breaking change if you previously depended on any of the private properties size, eq or resizeObserver of this plugin. Although it is not recommended that you use these internal data-properties at all, you could update to v3.0.0 by prefixing them with $_elementQueryMixin_ in your code.

[2.0.1] - 2018-07-18

Added

  • Added "ResizeObserver" to package keywords.

Fixed

  • Correctly disconnect from resizeObserver on component destroy.

[2.0.0] - 2018-07-18

Added

  • ResizeObserver polyfill.

Changed

  • Internally we no longer use window.resize to observe sizing changes. Every component uses the ResizeObserver API now.

Fixed

Removed

  • debounce property for window.resize events, on both component- and plugin-level.
  • window.resize usage in favor of ResizeObserver.

[1.1.0] - 2018-07-11

Added

Changed

  • Run built script on prepublishOnly instead of prepare.

[1.0.7] - 2018-07-11

Added

  • Rollup to generate an ES Modules and CommonJS build from the source.

Changed

  • Upload both src/ and dist/ folders to NPM.