Skip to content

Releases: floating-ui/floating-ui

v1.0.8

12 Mar 09:55
Compare
Choose a tag to compare
  • [fix]: Fixed scroll event listeners (fix #151) (#182)

v1.0.7

27 Feb 11:36
Compare
Choose a tag to compare
  • [fix] Calculate position to documentRoot instead of offsetParent (fixes #177) (thank @claudiobmgrtnr)

v1.0.6

02 Feb 12:56
Compare
Choose a tag to compare

Changelog:

  • [fix] exclude .babelrc from npm bundle to avoid build problems in 3rd party build setups (#168)

v1.0.5

31 Jan 12:12
Compare
Choose a tag to compare

Changelog:

  • [fix] Importing into universal apps (#166) (thank @HHogg)
  • [docs] fixed several errors in the documentation (#164, #163, #160) (thank @Narretz and @liril-net)
  • [tests/update] updated dependencies, fixed warnings during build and tests

v1.0.4

13 Jan 15:45
Compare
Choose a tag to compare

Don't ask where v1.0.3 gone, no idea.

By the way, here's the changelog for this version:

  • [fix] fixed #143 (#146)
  • [docs] Fixing position documentation (#145) (thank @ocombe)
  • [tests] we now have code coverage reports (86% atm!)
  • [tests] we now have codeclimate analysis (3.6 atm!)
  • [npm] you can't no longer access Tooltip.js builds from the Popper.js npm package, install both the packages if you need them!

We also released Tooltip.js v1.0.3:

  • [fix] fixed #144 (#147)
  • [npm] you can't no longer access Popper.js builds from the Tooltip.js npm package, install both the packages if you need them!

v1.0.2

11 Jan 12:46
Compare
Choose a tag to compare
  • [fix] Fixed typo: scheduledUpdate => scheduleUpdate (thank @nadiam84)
  • [docs] Add CDNJS info in README.md (#141) (thank @PeterDaveHello)

v1.0.1

09 Jan 10:54
Compare
Choose a tag to compare
  • [Fix] Fixed positioning problem when popper had not any positioned parent (#136, thank @nadiam84)
  • [Perf] Minor perf improvement of arrow modifier
  • [Tests] Added more unit tests (#131, thank @nadiam84)

v1.0.0

06 Jan 12:35
Compare
Choose a tag to compare

Read the introduction post about Popper.js v1 at https://medium.com/@FezVrasta/popper-js-v1-5e8b3acd888c

Changelog:

  • BREAKING CHANGE: removed all the underscores _ prefixes from properties
  • converted source code to ES6
  • build now uses Rollup
  • moved from JSHint to ESLint
  • moved from Uglify to Babili
  • Get rid of Grunt
  • updated npm dependencies
  • BREAKING CHANGE: removed parse method from core library, you can't automatically create popper's markup using Popper.js core. If you need the feature, here you can find a custom modifier that reintroduces the feature. https://gist.github.com/FezVrasta/075d228ffb855688c75a69c6d1d6afce
  • Added Tooltip.js library to replace the parse method
  • BREAKING CHANGE: simplified modifiers API, see #62 for migration instructions
  • BREAKING CHANGE: modifiers options are now stored inside the modifiers configurations, see #62
  • Full support for HTML5 shadow root and HTML5 components (#88) (thanks @nadiam84)
  • Improved flip detection strategy (#82) (thanks @nadiam84)
  • BREAKING CHANGE: boundariesElement has been deprecated in favor to new options of preventOverflow and flip modifiers (#75)
  • You can now set attributes defining them in data.attributes, properties with false values will be removed
  • BREAKING CHANGE: onCreate and onUpdate methods have been converted to properties of the options object
    you can now use them with new Popper(a, b, { ...otherOptions, onCreate: () => {}, onUpdate: () => {} })
  • BREAKING CHANGE: gpuAcceleration is now an option of the applyStyle modifier (modifiers.applyStyle.gpuAcceleration)
  • FEATURE: added auto placement, it will automatically get converted to the placement with more free space available (addresses #1)
  • FEATURE: added inner modifier, it allows to make the popper flow toward the inner of the reference element (addresses #83)
  • From now on, the changelog will be posted in the GitHub releases and not in the CHANGELOG.md file

v1.0.0-beta.4

02 Jan 13:36
Compare
Choose a tag to compare
v1.0.0-beta.4 Pre-release
Pre-release

In this release:

  • more bug fixed
  • added more tests
  • added new inner modifier (see #83)

v1.0.0-beta.3

30 Dec 15:45
Compare
Choose a tag to compare
v1.0.0-beta.3 Pre-release
Pre-release

This new beta release fixes several edge cases and bugs, it also improves the code quality.