@dialpad/dialtone-vue 2.124.0 → 2.125.0

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.
Files changed (43) hide show
  1. package/CHANGELOG.json +1 -1
  2. package/CHANGELOG.md +14 -0
  3. package/dist/dialtone-vue.cjs +3 -2
  4. package/dist/dialtone-vue.cjs.map +1 -0
  5. package/dist/dialtone-vue.js +13 -7
  6. package/dist/dialtone-vue.js.map +1 -0
  7. package/dist/directives.cjs +1 -0
  8. package/dist/directives.cjs.map +1 -0
  9. package/dist/directives.js +1 -0
  10. package/dist/directives.js.map +1 -0
  11. package/dist/emoji.cjs +1 -0
  12. package/dist/emoji.cjs.map +1 -0
  13. package/dist/emoji.js +1 -0
  14. package/dist/emoji.js.map +1 -0
  15. package/dist/emoji_picker-kiTOKaq8.js +1 -0
  16. package/dist/emoji_picker-kiTOKaq8.js.map +1 -0
  17. package/dist/emoji_picker-njWWAm6V.cjs +1 -0
  18. package/dist/emoji_picker-njWWAm6V.cjs.map +1 -0
  19. package/dist/emoji_text_wrapper-48ClwKvf.js +1 -0
  20. package/dist/emoji_text_wrapper-48ClwKvf.js.map +1 -0
  21. package/dist/emoji_text_wrapper-ZlynvHnd.cjs +1 -0
  22. package/dist/emoji_text_wrapper-ZlynvHnd.cjs.map +1 -0
  23. package/dist/index-OF94C6nQ.js +1 -0
  24. package/dist/index-OF94C6nQ.js.map +1 -0
  25. package/dist/index-Wx7Jagcr.cjs +1 -0
  26. package/dist/index-Wx7Jagcr.cjs.map +1 -0
  27. package/dist/message_input.cjs +2 -1
  28. package/dist/message_input.cjs.map +1 -0
  29. package/dist/message_input.js +2 -1
  30. package/dist/message_input.js.map +1 -0
  31. package/dist/{rich_text_editor-Eh5kYokw.cjs → rich_text_editor-RVMsCB8N.cjs} +2 -1
  32. package/dist/rich_text_editor-RVMsCB8N.cjs.map +1 -0
  33. package/dist/{rich_text_editor-9sMob7ck.js → rich_text_editor-eMvTs_Gp.js} +3 -2
  34. package/dist/rich_text_editor-eMvTs_Gp.js.map +1 -0
  35. package/dist/style.css +1 -1
  36. package/dist/tooltip-88U5vFMA.js +1 -0
  37. package/dist/tooltip-88U5vFMA.js.map +1 -0
  38. package/dist/tooltip-i2wxFIIi.cjs +1 -0
  39. package/dist/tooltip-i2wxFIIi.cjs.map +1 -0
  40. package/dist/types/components/rich_text_editor/extensions/suggestion/SuggestionList.vue.d.ts +1 -1
  41. package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts +9 -0
  42. package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts.map +1 -1
  43. package/package.json +4 -4
@@ -15534,7 +15534,7 @@ const hy = {
15534
15534
  },
15535
15535
  methods: {
15536
15536
  onKeyDown({ event: n }) {
15537
- return n.key === "ArrowUp" ? (this.upHandler(), !0) : n.key === "ArrowDown" ? (this.downHandler(), !0) : n.key === "Enter" ? (this.enterHandler(), n.stopPropagation(), !0) : !1;
15537
+ return n.key === "ArrowUp" ? (this.upHandler(), !0) : n.key === "ArrowDown" ? (this.downHandler(), !0) : n.key === "Enter" || n.key === "Tab" ? (n.preventDefault(), this.selectHandler(), n.stopPropagation(), !0) : !1;
15538
15538
  },
15539
15539
  upHandler() {
15540
15540
  this.selectedIndex = (this.selectedIndex + this.items.length - 1) % this.items.length, this.scrollActiveElementIntoView();
@@ -15549,7 +15549,7 @@ const hy = {
15549
15549
  block: "center"
15550
15550
  });
15551
15551
  },
15552
- enterHandler() {
15552
+ selectHandler() {
15553
15553
  this.selectItem(this.selectedIndex);
15554
15554
  },
15555
15555
  selectItem(n) {
@@ -16476,3 +16476,4 @@ export {
16476
16476
  ut as t,
16477
16477
  ul as u
16478
16478
  };
16479
+ //# sourceMappingURL=rich_text_editor-eMvTs_Gp.js.map