Skip to content

v2.0.0

Compare
Choose a tag to compare
@mshwery mshwery released this 08 May 18:19
· 68 commits to master since this release

Welcome to v2.0.0 of ui-box! πŸŽ‚

The major version bump is primarily because we've migrated the entire lib to TypeScript and are outputting es6 code as our target (previously we were transpiling all es 2015+ code). We now have built-in types from the lib itself (no more need for @types/ui-box).

Breaking Changes:

  • css is no longer exported from ui-box. It was a proxy for using glamor and added unnecessary complexity to ui-box.
  • css is no longer an accepted prop for <Box /> – it won't interpret that prop and will pass it through to the underlying component.
  • no longer supports es5. ui-box targets es6 as a bare minimum, and if you need further support you will need to use something like @babel/preset-env or webpack to polyfill based on your needs.

Updates:

  • migrate ui-box to typescript with declarations (#28) 502f66d
  • fix: typo in deprecation warning (#32) eef320e
  • Upgrade dependencies 599126a
  • Fix security vulnerability in devDependency 6de7076
  • Fix storybook 520c734
  • Upgrade to babel 7 5975dc7
  • Upgrade dependencies b92ec56
  • Remove the storybook github pages e86c1eb

v1.4.0...v2.0.0