Skip to content

Commit

Permalink
Merge pull request #1537 from marhalpert/controlsList-validAttr
Browse files Browse the repository at this point in the history
feat(validAttr): add controlsList to validAttr list
  • Loading branch information
kitten committed Feb 21, 2018
2 parents 0fb244f + 591817c commit 9a91bde
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file. If a contri

## Unreleased

- Add `controlsList` to validAttr list (see [#1537](https://github.com/styled-components/styled-components/pull/1537))

- Enable stylis' semicolon autocompletion which was accidentally disabled for a lot of prior releases (see [#1532](https://github.com/styled-components/styled-components/pull/1532))

- Fix `insertRule` injection (speedy mode in production) of nested media queries by upgrading stylis-rule-sheet (see [#1529](https://github.com/styled-components/styled-components/pull/1529) and [#1528](https://github.com/styled-components/styled-components/pull/1528))
Expand Down
1 change: 1 addition & 0 deletions src/utils/test/validAttr.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ describe('validAttr', () => {
expect(validAttr('contentEditable')).toEqual(true)
expect(validAttr('contextMenu')).toEqual(true)
expect(validAttr('controls')).toEqual(true)
expect(validAttr('controlsList')).toEqual(true)
expect(validAttr('coords')).toEqual(true)
expect(validAttr('crossOrigin')).toEqual(true)
expect(validAttr('data')).toEqual(true)
Expand Down

0 comments on commit 9a91bde

Please sign in to comment.