@lightningjs/solid
Advanced tools
Comparing version 0.12.8 to 0.12.9
@@ -64,7 +64,7 @@ import { type AnimationSettings, type Dimensions, type INode, type INodeWritableProps, type ITextNodeWritableProps, type NodeFailedPayload, type NodeLoadedPayload } from '@lightningjs/renderer'; | ||
export interface IntrinsicNodeProps extends AddUndefined<IntrinsicNodeCommonProps & IntrinsicNodeStyleProps> { | ||
style?: IntrinsicNodeStyleProps | undefined; | ||
style?: IntrinsicNodeStyleProps | IntrinsicNodeStyleProps[] | undefined; | ||
children?: JSX.Element | undefined; | ||
} | ||
export interface IntrinsicTextProps extends AddUndefined<IntrinsicNodeCommonProps & IntrinsicTextNodeStyleProps> { | ||
style?: IntrinsicTextNodeStyleProps | undefined; | ||
style?: IntrinsicTextNodeStyleProps | IntrinsicTextNodeStyleProps[] | undefined; | ||
children: string | string[]; | ||
@@ -71,0 +71,0 @@ } |
{ | ||
"name": "@lightningjs/solid", | ||
"version": "0.12.8", | ||
"version": "0.12.9", | ||
"description": "Lightning renderer for solid universal", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -113,3 +113,3 @@ /* | ||
extends AddUndefined<IntrinsicNodeCommonProps & IntrinsicNodeStyleProps> { | ||
style?: IntrinsicNodeStyleProps | undefined; | ||
style?: IntrinsicNodeStyleProps | IntrinsicNodeStyleProps[] | undefined; | ||
children?: JSX.Element | undefined; | ||
@@ -120,3 +120,6 @@ } | ||
extends AddUndefined<IntrinsicNodeCommonProps & IntrinsicTextNodeStyleProps> { | ||
style?: IntrinsicTextNodeStyleProps | undefined; | ||
style?: | ||
| IntrinsicTextNodeStyleProps | ||
| IntrinsicTextNodeStyleProps[] | ||
| undefined; | ||
children: string | string[]; | ||
@@ -123,0 +126,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
285795
4631