Socket
Socket
Sign inDemoInstall

create-emotion

Package Overview
Dependencies
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-emotion - npm Package Compare versions

Comparing version 11.0.0-next.6 to 11.0.0-next.8

7

CHANGELOG.md
# create-emotion
## 11.0.0-next.8
### Patch Changes
- Updated dependencies [[`c643107`](https://github.com/emotion-js/emotion/commit/c6431074cf52a4bb64587c86ce5d42fe2d49230b)]:
- @emotion/serialize@0.12.0-next.3
## 11.0.0-next.6

@@ -4,0 +11,0 @@

4

package.json
{
"name": "create-emotion",
"version": "11.0.0-next.6",
"version": "11.0.0-next.8",
"description": "The Next Generation of CSS-in-JS.",

@@ -18,3 +18,3 @@ "main": "dist/create-emotion.cjs.js",

"@emotion/cache": "^11.0.0-next.6",
"@emotion/serialize": "^0.11.15-next.1",
"@emotion/serialize": "^0.12.0-next.3",
"@emotion/sheet": "0.10.0-next.0",

@@ -21,0 +21,0 @@ "@emotion/utils": "0.11.2"

@@ -5,13 +5,13 @@ // Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>

import { EmotionCache, Options } from '@emotion/cache'
import { Interpolation } from '@emotion/serialize'
import { CSSInterpolation } from '@emotion/serialize'
import { StyleSheet } from '@emotion/sheet'
export {
ArrayInterpolation,
CSSInterpolation,
ArrayCSSInterpolation,
ComponentSelector,
FunctionInterpolation,
ObjectInterpolation
CSSObject
} from '@emotion/serialize'
export { EmotionCache, Interpolation, Options, StyleSheet }
export { EmotionCache, Options, StyleSheet }

@@ -28,4 +28,4 @@ export interface ArrayClassNamesArg extends Array<ClassNamesArg> {}

export interface Emotion {
css(template: TemplateStringsArray, ...args: Array<Interpolation>): string
css(...args: Array<Interpolation>): string
css(template: TemplateStringsArray, ...args: Array<CSSInterpolation>): string
css(...args: Array<CSSInterpolation>): string
cx(...classNames: Array<ClassNamesArg>): string

@@ -36,10 +36,10 @@ flush(): void

template: TemplateStringsArray,
...args: Array<Interpolation>
...args: Array<CSSInterpolation>
): void
injectGlobal(...args: Array<Interpolation>): void
injectGlobal(...args: Array<CSSInterpolation>): void
keyframes(
template: TemplateStringsArray,
...args: Array<Interpolation>
...args: Array<CSSInterpolation>
): string
keyframes(...args: Array<Interpolation>): string
keyframes(...args: Array<CSSInterpolation>): string
sheet: StyleSheet

@@ -46,0 +46,0 @@ cache: EmotionCache

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc