@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.
- package/CHANGELOG.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/dialtone-vue.cjs +3 -2
- package/dist/dialtone-vue.cjs.map +1 -0
- package/dist/dialtone-vue.js +13 -7
- package/dist/dialtone-vue.js.map +1 -0
- package/dist/directives.cjs +1 -0
- package/dist/directives.cjs.map +1 -0
- package/dist/directives.js +1 -0
- package/dist/directives.js.map +1 -0
- package/dist/emoji.cjs +1 -0
- package/dist/emoji.cjs.map +1 -0
- package/dist/emoji.js +1 -0
- package/dist/emoji.js.map +1 -0
- package/dist/emoji_picker-kiTOKaq8.js +1 -0
- package/dist/emoji_picker-kiTOKaq8.js.map +1 -0
- package/dist/emoji_picker-njWWAm6V.cjs +1 -0
- package/dist/emoji_picker-njWWAm6V.cjs.map +1 -0
- package/dist/emoji_text_wrapper-48ClwKvf.js +1 -0
- package/dist/emoji_text_wrapper-48ClwKvf.js.map +1 -0
- package/dist/emoji_text_wrapper-ZlynvHnd.cjs +1 -0
- package/dist/emoji_text_wrapper-ZlynvHnd.cjs.map +1 -0
- package/dist/index-OF94C6nQ.js +1 -0
- package/dist/index-OF94C6nQ.js.map +1 -0
- package/dist/index-Wx7Jagcr.cjs +1 -0
- package/dist/index-Wx7Jagcr.cjs.map +1 -0
- package/dist/message_input.cjs +2 -1
- package/dist/message_input.cjs.map +1 -0
- package/dist/message_input.js +2 -1
- package/dist/message_input.js.map +1 -0
- package/dist/{rich_text_editor-Eh5kYokw.cjs → rich_text_editor-RVMsCB8N.cjs} +2 -1
- package/dist/rich_text_editor-RVMsCB8N.cjs.map +1 -0
- package/dist/{rich_text_editor-9sMob7ck.js → rich_text_editor-eMvTs_Gp.js} +3 -2
- package/dist/rich_text_editor-eMvTs_Gp.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/tooltip-88U5vFMA.js +1 -0
- package/dist/tooltip-88U5vFMA.js.map +1 -0
- package/dist/tooltip-i2wxFIIi.cjs +1 -0
- package/dist/tooltip-i2wxFIIi.cjs.map +1 -0
- package/dist/types/components/rich_text_editor/extensions/suggestion/SuggestionList.vue.d.ts +1 -1
- package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts +9 -0
- package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts.map +1 -1
- 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.
|
|
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
|
-
|
|
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
|