@fishawack/lab-velocity 2.0.0-beta.56 → 2.0.0-beta.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -565,8 +565,8 @@ export default {
565
565
  });
566
566
  this.setValue();
567
567
 
568
- this.editor.on("blur", ({ editor, event }) => {
569
- const value = editor.isEmpty ? "" : event.srcElement.innerHTML;
568
+ this.editor.on("update", ({ editor }) => {
569
+ const value = editor.isEmpty ? "" : editor.getHTML();
570
570
  if (this.hold !== value) {
571
571
  this.hold = value;
572
572
  this.$emit("update:modelValue", this.hold);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-velocity",
3
- "version": "2.0.0-beta.56",
3
+ "version": "2.0.0-beta.57",
4
4
  "description": "Avalere Health branded style system",
5
5
  "scripts": {
6
6
  "setup": "npm ci || npm i && npm run content",