emotion-theming
Advanced tools
Comparing version 10.0.9 to 10.0.10
{ | ||
"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
43670
576