@vaadin/vaadin-grid-pro
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-grid-pro", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"main": "vaadin-grid-pro.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -296,2 +296,9 @@ /** | ||
if (value !== this.get(column.path, model.item)) { | ||
// In some cases, where the value comes from the editor's change | ||
// event (eg. custom editor in vaadin-grid-pro-flow), the event is | ||
// not dispatched in FF/Safari/Edge. That's due the change event | ||
// doesn't occur when the editor is removed from the DOM. Manually | ||
// calling blur makes the event to be dispatched. | ||
editor.blur(); | ||
this.dispatchEvent(new CustomEvent('item-property-changed', { | ||
@@ -298,0 +305,0 @@ detail: { |
@@ -34,3 +34,3 @@ /** | ||
static get version() { | ||
return '2.1.0'; | ||
return '2.1.2'; | ||
} | ||
@@ -37,0 +37,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
60024
1081