@riotjs/dom-bindings
Advanced tools
Comparing version 5.1.0 to 5.1.1
@@ -15,15 +15,15 @@ // Expressions | ||
export interface AttributeExpressionData<Scope = any> extends BaseExpressionData { | ||
export interface AttributeExpressionData<Scope = any> extends BaseExpressionData<Scope> { | ||
name: string | ||
} | ||
export interface EventExpressionData<Scope = any> extends BaseExpressionData { | ||
export interface EventExpressionData<Scope = any> extends BaseExpressionData<Scope> { | ||
name: string | ||
} | ||
export interface TextExpressionData<Scope = any> extends BaseExpressionData { | ||
export interface TextExpressionData<Scope = any> extends BaseExpressionData<Scope> { | ||
childNodeIndex: number | ||
} | ||
export interface ValueExpressionData<Scope = any> extends BaseExpressionData {} | ||
export interface ValueExpressionData<Scope = any> extends BaseExpressionData<Scope> {} | ||
@@ -57,3 +57,3 @@ export type ExpressionData<Scope = any> = AttributeExpressionData<Scope> | EventExpressionData<Scope> | TextExpressionData<Scope> | ValueExpressionData<Scope> | ||
export interface EachBindingData<Scope = any> extends BaseBindingData { | ||
export interface EachBindingData<Scope = any> extends BaseBindingData<Scope> { | ||
itemName: string | ||
@@ -66,17 +66,17 @@ indexName?: number | ||
export interface IfBindingData<Scope = any> extends BaseBindingData { | ||
export interface IfBindingData<Scope = any> extends BaseBindingData<Scope> { | ||
template: TemplateChunk<Scope> | ||
} | ||
export interface SimpleBindingData<Scope = any> extends BaseBindingData { | ||
export interface SimpleBindingData<Scope = any> extends BaseBindingData<Scope> { | ||
expressions: ExpressionData<Scope>[] | ||
} | ||
export interface SlotBindingData<Scope = any> extends BaseBindingData { | ||
export interface SlotBindingData<Scope = any> extends BaseBindingData<Scope> { | ||
id: string | ||
html: string | ||
bindings: BindingData<Scope> | ||
bindings: BindingData<Scope>[] | ||
} | ||
export interface TagBindingData<Scope = any> extends BaseBindingData { | ||
export interface TagBindingData<Scope = any> extends BaseBindingData<Scope> { | ||
getComponent(name: string): TemplateChunk<Scope> | ||
@@ -83,0 +83,0 @@ attributes: AttributeExpressionData<Scope>[] |
{ | ||
"name": "@riotjs/dom-bindings", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"description": "Riot.js DOM bindings", | ||
@@ -5,0 +5,0 @@ "main": "dist/umd.dom-bindings.js", |
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
114267