Skip to content

Commit 55b0890

Browse files
authored
chore: update emotion to the latest version (#648)
1 parent ccf0faa commit 55b0890

File tree

51 files changed

+186
-241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+186
-241
lines changed

package-lock.json

Lines changed: 136 additions & 191 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"color-hash": "2.0.2",
2929
"electron": "35.7.5",
3030
"electron-json-storage": "4.6.0",
31-
"emotion": "9.2.12",
31+
"@emotion/css": "11.13.5",
3232
"graphql": "16.13.1",
3333
"graphql-request": "5.1.0",
3434
"graphql-tag": "2.12.6",

packages/overmind-devtools-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"@babel/runtime": "^7.28.6",
2222
"color-hash": "^2.0.2",
23-
"emotion": "^9.2.12",
23+
"@emotion/css": "^11.13.5",
2424
"lodash.clonedeep": "^4.5.0",
2525
"overmind-react": "next",
2626
"react": "^19.2.4",

packages/overmind-devtools-client/src/components/Action/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { css } from 'emotion'
1+
import { css } from '@emotion/css'
22
import { colors } from '../../theme'
33

44
export const wrapper = css({

packages/overmind-devtools-client/src/components/ActionFlush/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useAppState } from '../../overmind'
33
import { Flush as FlushType } from '../../overmind/types'
44
import * as styles from './styles'
55
import * as textStyles from '../../styles/text'
6-
import { css } from 'emotion'
6+
import { css } from '@emotion/css'
77
import { FaCode, FaLink } from 'react-icons/fa'
88

99
type Props = {

packages/overmind-devtools-client/src/components/ActionFlush/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { css } from 'emotion'
1+
import { css } from '@emotion/css'
22
import { colors } from '../../theme'
33

44
export const flush = css({

packages/overmind-devtools-client/src/components/ActionOperator/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { css } from 'emotion'
1+
import { css } from '@emotion/css'
22
import * as React from 'react'
33

44
import { useAppState } from '../../overmind'

packages/overmind-devtools-client/src/components/ActionOperator/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { css, keyframes } from 'emotion'
1+
import { css, keyframes } from '@emotion/css'
22
import { colors } from '../../theme'
33

44
export const operator = css({

packages/overmind-devtools-client/src/components/ActionPayload/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { css } from 'emotion'
1+
import { css } from '@emotion/css'
22
import { colors } from '../../theme'
33

44
export const wrapper = css({

packages/overmind-devtools-client/src/components/ActionSelector/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react'
22
import * as styles from './styles'
33
import { useAppState, useActions } from '../../overmind'
44
import { nameToColor } from '../../overmind/utils'
5-
import { css } from 'emotion'
5+
import { css } from '@emotion/css'
66

77
const ActionSelector: React.FunctionComponent = () => {
88
const state = useAppState()

0 commit comments

Comments
 (0)