New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

emotion-theming

Package Overview
Dependencies
Maintainers
2
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emotion-theming - npm Package Compare versions

Comparing version 10.0.9 to 10.0.10

6

package.json
{
"name": "emotion-theming",
"version": "10.0.9",
"version": "10.0.10",
"description": "A CSS-in-JS theming solution, inspired by styled-components",

@@ -35,4 +35,4 @@ "main": "dist/emotion-theming.cjs.js",

"devDependencies": {
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"@types/react": "16.3.18",

@@ -39,0 +39,0 @@ "dtslint": "^0.3.0"

@@ -12,4 +12,4 @@ # emotion-theming

- [API](#api)
- [ThemeProvider](#themeprovider)
- [withTheme](#withthemecomponent)
- [ThemeProvider](#themeprovider-reactcomponenttype)
- [withTheme](#withthemecomponent-reactcomponenttype-reactcomponenttype)
- [Credits](#credits)

@@ -16,0 +16,0 @@ - [License](#license)

@@ -13,4 +13,4 @@ import * as React from 'react'

export type Omit<T, U> = Pick<T, Exclude<keyof T, U>>
export type Omit<T, U> = T extends any ? Pick<T, Exclude<keyof T, U>> : never
export type AddOptionalTo<T, U> = Omit<T, U> &
Partial<Pick<T, Extract<keyof T, U>>>

Sorry, the diff of this file is not supported yet

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