Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@riotjs/dom-bindings

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@riotjs/dom-bindings - npm Package Compare versions

Comparing version 5.1.0 to 5.1.1

20

dom-bindings.d.ts

@@ -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",

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