Skip to content

Releases: sergeysova/styled-normalize

v8.1.1

08 Feb 13:08
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v8.1.0...v8.1.1

v8.1.0

20 Oct 11:38
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v8.0.7...v8.1.0

v8.0.7

30 Jan 07:01
5b4d878
Compare
Choose a tag to compare

Changes

v8.0.6

16 Nov 16:32
Compare
Choose a tag to compare

v8.0.5...v8.0.6

Fixes

5a9a051 Fix compatibility with latest styled-components types (#10)

Thanks @Lavoaster

v8.0.5 #prev

13 Nov 17:32
Compare
Choose a tag to compare

v8.0.5

13 Nov 17:18
Compare
Choose a tag to compare

v8.0.4 #prev

13 Nov 17:00
Compare
Choose a tag to compare

v8.0.4

13 Nov 16:39
Compare
Choose a tag to compare

v8.0.3...v8.0.4

Major changes

ca4521c Only styled-components@4 supports now

Removed support of ^2.0.0 || ^3.3.3 diff

ca4521c Updated dev dependencies

  • react / react-dom
  • styled-components
  • @babel/preset-env

ca4521c Removed export version #5

ca4521c Fixed typescript types #9

Should be checked

v8.0.3

25 Oct 11:03
Compare
Choose a tag to compare

Fixes

v8.0.2

17 Oct 19:41
Compare
Choose a tag to compare

Features

  • 9703335 add support for styled-components v4
import React from 'react'
import { Normalize } from 'styled-normalize'

import { App } from './app'

const Root = () => (
  <React.Fragment>
    <Normalize />
    <App />
  </React.Fragment>
)