@atjson/renderer-react
Advanced tools
Comparing version 0.12.8 to 0.12.9
@@ -6,2 +6,11 @@ # Change Log | ||
## [0.12.9](https://github.com/CondeNast-Copilot/atjson/compare/@atjson/renderer-react@0.12.8...@atjson/renderer-react@0.12.9) (2019-04-10) | ||
### 🐛 Fixes | ||
* 🐛 fix typings for component lookup | ||
## [0.12.8](https://github.com/CondeNast-Copilot/atjson/compare/@atjson/renderer-react@0.12.7...@atjson/renderer-react@0.12.8) (2019-04-10) | ||
@@ -8,0 +17,0 @@ |
@@ -5,3 +5,3 @@ import Document, { Annotation } from '@atjson/document'; | ||
export interface ComponentLookup { | ||
[key: string]: React.StatelessComponent | React.ComponentClass; | ||
[key: string]: React.StatelessComponent<any> | React.ComponentClass<any>; | ||
} | ||
@@ -8,0 +8,0 @@ export default class ReactRenderer extends Renderer { |
@@ -5,3 +5,3 @@ import Document, { Annotation } from '@atjson/document'; | ||
export interface ComponentLookup { | ||
[key: string]: React.StatelessComponent | React.ComponentClass; | ||
[key: string]: React.StatelessComponent<any> | React.ComponentClass<any>; | ||
} | ||
@@ -8,0 +8,0 @@ export default class ReactRenderer extends Renderer { |
{ | ||
"name": "@atjson/renderer-react", | ||
"version": "0.12.8", | ||
"version": "0.12.9", | ||
"description": "A brand new TypeScript library.", | ||
@@ -25,3 +25,3 @@ "main": "dist/commonjs/index.js", | ||
}, | ||
"gitHead": "3e6d93820b905282c1ccedcbaae7958f551050a8" | ||
"gitHead": "50addb259edc324f2ace52602755fd8768815e31" | ||
} |
@@ -6,3 +6,3 @@ import Document, { Annotation } from '@atjson/document'; | ||
export interface ComponentLookup { | ||
[key: string]: React.StatelessComponent | React.ComponentClass; | ||
[key: string]: React.StatelessComponent<any> | React.ComponentClass<any>; | ||
} | ||
@@ -9,0 +9,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26687