From 6b348da807ef62399a4b20968bb1a2dfd280242f Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:07:58 +0530 Subject: [PATCH] feat(v4): Compose a new conversation from a phone number. (#10568) --- .../components/ContactSelector.vue | 20 +- .../helpers/composeConversationHelper.js | 8 +- .../specs/composeConversationHelper.spec.js | 22 ++ .../components-next/taginput/TagInput.vue | 133 ++++---- .../helper/spec/tagInputHelper.spec.js | 299 ++++++++++++++++++ .../taginput/helper/tagInputHelper.js | 124 ++++++++ 6 files changed, 528 insertions(+), 78 deletions(-) create mode 100644 app/javascript/dashboard/components-next/taginput/helper/spec/tagInputHelper.spec.js create mode 100644 app/javascript/dashboard/components-next/taginput/helper/tagInputHelper.js diff --git a/app/javascript/dashboard/components-next/NewConversation/components/ContactSelector.vue b/app/javascript/dashboard/components-next/NewConversation/components/ContactSelector.vue index 33a2f8f20..7ff0a2efa 100644 --- a/app/javascript/dashboard/components-next/NewConversation/components/ContactSelector.vue +++ b/app/javascript/dashboard/components-next/NewConversation/components/ContactSelector.vue @@ -1,9 +1,11 @@