Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: emotion-js/emotion
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @emotion/styled@10.0.22
Choose a base ref
...
head repository: emotion-js/emotion
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @emotion/styled@10.0.23
Choose a head ref
  • 13 commits
  • 66 files changed
  • 5 contributors

Commits on Oct 23, 2019

  1. Copy the full SHA
    95a43a2 View commit details
  2. Upgrade flow (#1566)

    Andarist authored and emmatown committed Oct 23, 2019
    Copy the full SHA
    3faff18 View commit details

Commits on Oct 24, 2019

  1. Add a changeset

    emmatown committed Oct 24, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    RafaelGSS Rafael Gonzaga
    Copy the full SHA
    3b7e2f2 View commit details
  2. Version Packages (#1567)

    github-actions[bot] authored and emmatown committed Oct 24, 2019
    Copy the full SHA
    9ff27de View commit details

Commits on Oct 25, 2019

  1. Copy the full SHA
    3927293 View commit details

Commits on Oct 26, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    b3a0f14 View commit details

Commits on Oct 27, 2019

  1. Insert import to @emotion/core after existing imports to avoid orderi…

    …ng issues with polyfills (#1576)
    Andarist authored and emmatown committed Oct 27, 2019
    Copy the full SHA
    539bc0c View commit details
  2. Fixed styled Flow types (#1570)

    * fix: refactor styled-base Flow types to work again
    
    * fix: improve Styled type to accept optional props type
    
    * fix: make styled package return proper types
    
    * fix: missing flow header
    
    * test: test untyped styled component
    
    * chore: fix site types
    
    * docs: comment typo
    FezVrasta authored and Andarist committed Oct 27, 2019
    Copy the full SHA
    9767309 View commit details

Commits on Oct 29, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    tpoisseau tpoisseau
    Copy the full SHA
    1ae9489 View commit details
  2. add "on" amp html property to whitelist (#1584)

    * add "on" amp html property to whitelist
    
    fixes styled-components/styled-components#2689
    
    * add changeset
    quantizor authored and emmatown committed Oct 29, 2019
    Copy the full SHA
    6cdb569 View commit details
  3. Copy the full SHA
    a55f3d4 View commit details
  4. Copy the full SHA
    ca95f38 View commit details
  5. Version Packages (#1571)

    github-actions[bot] authored and Andarist committed Oct 29, 2019
    Copy the full SHA
    ed0a460 View commit details
Showing with 1,019 additions and 330 deletions.
  1. +3 −2 .flowconfig
  2. +2 −1 .flowconfig-ci
  3. +1 −1 .github/workflows/release.yml
  4. +1 −1 package.json
  5. +11 −0 packages/babel-plugin-emotion/CHANGELOG.md
  6. +56 −14 packages/babel-plugin-emotion/__tests__/__snapshots__/css-requires-options.js.snap
  7. +81 −20 packages/babel-plugin-emotion/__tests__/__snapshots__/css.js.snap
  8. +25 −6 packages/babel-plugin-emotion/__tests__/__snapshots__/index.js.snap
  9. +1 −1 packages/babel-plugin-emotion/__tests__/__snapshots__/styled-requires-options.js.snap
  10. +51 −13 packages/babel-plugin-emotion/__tests__/__snapshots__/styled.js.snap
  11. +57 −20 packages/babel-plugin-emotion/__tests__/__snapshots__/vanilla-emotion.js.snap
  12. +77 −19 packages/babel-plugin-emotion/__tests__/css-macro/__snapshots__/index.js.snap
  13. +22 −5 packages/babel-plugin-emotion/__tests__/source-maps/__snapshots__/index.js.snap
  14. +45 −13 packages/babel-plugin-emotion/__tests__/styled-macro/__snapshots__/index.js.snap
  15. +1 −1 packages/babel-plugin-emotion/__tests__/styled-requires-options.js
  16. +57 −20 packages/babel-plugin-emotion/__tests__/vanilla-emotion-macro/__snapshots__/index.js.snap
  17. +2 −2 packages/babel-plugin-emotion/package.json
  18. +3 −1 packages/babel-plugin-emotion/src/utils/get-target-class-name.js
  19. +4 −1 packages/babel-plugin-emotion/src/utils/source-maps.js
  20. +28 −2 packages/babel-plugin-emotion/src/utils/transform-expression-with-styles.js
  21. +6 −0 packages/babel-plugin-jsx-pragmatic/CHANGELOG.md
  22. +9 −0 packages/babel-plugin-jsx-pragmatic/__tests__/__fixtures__/existing-imports.js
  23. +26 −2 packages/babel-plugin-jsx-pragmatic/__tests__/__snapshots__/index.js.snap
  24. +2 −2 packages/babel-plugin-jsx-pragmatic/package.json
  25. +21 −6 packages/babel-plugin-jsx-pragmatic/src/index.js
  26. +12 −0 packages/babel-preset-css-prop/CHANGELOG.md
  27. +5 −3 packages/babel-preset-css-prop/__tests__/__snapshots__/index.js.snap
  28. +1 −2 packages/babel-preset-css-prop/__tests__/__snapshots__/options-are-used.js.snap
  29. +3 −3 packages/babel-preset-css-prop/package.json
  30. +17 −2 packages/core/__tests__/__snapshots__/css.js.snap
  31. +42 −1 packages/core/__tests__/css.js
  32. +2 −2 packages/core/__tests__/warnings.js
  33. +1 −1 packages/emotion-server/test/index.test.js
  34. +9 −0 packages/emotion/CHANGELOG.md
  35. +3 −0 packages/emotion/macro.d.ts
  36. +2 −0 packages/emotion/macro.js.flow
  37. +6 −4 packages/emotion/package.json
  38. +2 −2 packages/emotion/test/no-babel/warnings.test.js
  39. +1 −1 packages/emotion/test/warnings.test.js
  40. +6 −0 packages/is-prop-valid/CHANGELOG.md
  41. +2 −2 packages/is-prop-valid/package.json
  42. +2 −0 packages/is-prop-valid/src/props.js
  43. +8 −0 packages/primitives/CHANGELOG.md
  44. +3 −3 packages/primitives/package.json
  45. +14 −0 packages/serialize/CHANGELOG.md
  46. +1 −1 packages/serialize/package.json
  47. +18 −9 packages/serialize/src/index.js
  48. +1 −1 packages/sheet/__tests__/index.js
  49. +10 −0 packages/styled-base/CHANGELOG.md
  50. +27 −0 packages/styled-base/flow-tests/flow.js
  51. +3 −3 packages/styled-base/package.json
  52. +98 −99 packages/styled-base/src/index.js
  53. +30 −14 packages/styled-base/src/utils.js
  54. +10 −0 packages/styled/CHANGELOG.md
  55. +3 −3 packages/styled/__tests__/styled-dom.js
  56. +18 −2 packages/styled/__tests__/warnings.js
  57. +13 −0 packages/styled/flow-tests/flow.js
  58. +3 −3 packages/styled/package.json
  59. +1 −0 packages/styled/src/tags.js
  60. +1 −1 scripts/old-babel-tester/src/index.js
  61. +12 −1 site/src/components/Box.js
  62. +1 −0 site/src/components/Playground.js
  63. +4 −1 site/src/components/Title.js
  64. +1 −1 site/src/templates/doc.js
  65. +19 −6 site/src/utils/markdown-styles.js
  66. +12 −6 yarn.lock
5 changes: 3 additions & 2 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[version]
0.89.0
0.110.0

[ignore]
.*/node_modules/config-chain/.*
@@ -23,4 +23,5 @@

[options]
suppress_comment=.*\\$FlowFixMe
sharedmemory.hash_table_pow=21
suppress_comment=.*\\$FlowExpectError
sharedmemory.hash_table_pow=21
3 changes: 2 additions & 1 deletion .flowconfig-ci
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[version]
0.89.0
0.110.0

[ignore]
.*/node_modules/config-chain/.*
@@ -24,5 +24,6 @@

[options]
suppress_comment=.*\\$FlowFixMe
suppress_comment=.*\\$FlowExpectError
server.max_workers=1
sharedmemory.hash_table_pow=21
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
node-version: 10.x

- name: Install Yarn
run: npm install --global yarn
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -214,7 +214,7 @@
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react-hooks": "^1.0.1",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.89.0",
"flow-bin": "^0.110.0",
"html-tag-names": "^1.1.2",
"husky": "^1.1.3",
"jest": "^24.1.0",
11 changes: 11 additions & 0 deletions packages/babel-plugin-emotion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# babel-plugin-emotion

## 10.0.23

### Patch Changes

- [`3927293d`](https://github.com/emotion-js/emotion/commit/3927293d0b9d96b4a7c00196e8430728759b1161) [#1569](https://github.com/emotion-js/emotion/pull/1569) Thanks [@Andarist](https://github.com/Andarist)! - Add dev hint about css object (generated by Babel) being stringified by accident

* [`b3a0f148`](https://github.com/emotion-js/emotion/commit/b3a0f1484f2efcc78b447639ff2e0bc0f29915ae) [#1574](https://github.com/emotion-js/emotion/pull/1574) Thanks [@Andarist](https://github.com/Andarist)! - Fix babel plugin crashing when called programmatically without providing a filename

* Updated dependencies [[`a55f3d49`](https://github.com/emotion-js/emotion/commit/a55f3d49c2febdf7eb1bede3f12da13c3efa1399), [`ca95f385`](https://github.com/emotion-js/emotion/commit/ca95f385f7ce3da6d53de1a652b3b219f11434c4)]:
- @emotion/serialize@0.11.14

## 10.0.22

### Patch Changes
Loading