@riotjs/dom-bindings
Advanced tools
Comparing version 4.2.2 to 4.2.3
@@ -1205,5 +1205,5 @@ /** | ||
}, | ||
unmount(scope, parentScope) { | ||
unmount(scope, parentScope, mustRemoveRoot) { | ||
if (this.template) { | ||
this.template.unmount(parentScope); | ||
this.template.unmount(parentScope, null, mustRemoveRoot); | ||
} | ||
@@ -1562,3 +1562,3 @@ | ||
if (this.el) { | ||
this.bindings.forEach(b => b.unmount(scope, parentScope)); | ||
this.bindings.forEach(b => b.unmount(scope, parentScope, mustRemoveRoot)); | ||
@@ -1565,0 +1565,0 @@ if (mustRemoveRoot && this.el.parentNode) { |
@@ -1211,5 +1211,5 @@ (function (global, factory) { | ||
}, | ||
unmount(scope, parentScope) { | ||
unmount(scope, parentScope, mustRemoveRoot) { | ||
if (this.template) { | ||
this.template.unmount(parentScope); | ||
this.template.unmount(parentScope, null, mustRemoveRoot); | ||
} | ||
@@ -1568,3 +1568,3 @@ | ||
if (this.el) { | ||
this.bindings.forEach(b => b.unmount(scope, parentScope)); | ||
this.bindings.forEach(b => b.unmount(scope, parentScope, mustRemoveRoot)); | ||
@@ -1571,0 +1571,0 @@ if (mustRemoveRoot && this.el.parentNode) { |
{ | ||
"name": "@riotjs/dom-bindings", | ||
"version": "4.2.2", | ||
"version": "4.2.3", | ||
"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
101421