diff --git a/src/components/BreakoutRoomsEditor/SelectableParticipant.vue b/src/components/BreakoutRoomsEditor/SelectableParticipant.vue
index 190f4fecf18b..e81261a095e1 100644
--- a/src/components/BreakoutRoomsEditor/SelectableParticipant.vue
+++ b/src/components/BreakoutRoomsEditor/SelectableParticipant.vue
@@ -44,21 +44,21 @@ export default {
required: true,
},
- checked: {
+ modelValue: {
type: Array,
required: true,
},
},
- emits: ['update:checked'],
+ emits: ['update:modelValue'],
computed: {
modelProxy: {
get() {
- return this.checked
+ return this.modelValue
},
set(value) {
- this.$emit('update:checked', value)
+ this.$emit('update:modelValue', value)
},
},
},
diff --git a/src/components/ChatView.vue b/src/components/ChatView.vue
index 3f62d3e401f4..62cd88b20d40 100644
--- a/src/components/ChatView.vue
+++ b/src/components/ChatView.vue
@@ -27,7 +27,7 @@
diff --git a/src/components/ConversationSettings/ConversationSettingsDialog.vue b/src/components/ConversationSettings/ConversationSettingsDialog.vue
index ff51ff32a084..31148318fa05 100644
--- a/src/components/ConversationSettings/ConversationSettingsDialog.vue
+++ b/src/components/ConversationSettings/ConversationSettingsDialog.vue
@@ -7,7 +7,7 @@
@@ -58,7 +58,7 @@
{{ t('spreed', 'Delete chat messages') }}
diff --git a/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue b/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue
index a2f8f49f05a6..3dfb20822bb1 100644
--- a/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue
+++ b/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue
@@ -21,13 +21,13 @@
v-model="searchText"
@keydown.enter="createConversation(participantPhoneItem)" />
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue
index 002c9f9616e3..99932df8f428 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.vue
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue
@@ -88,7 +88,7 @@
-
diff --git a/src/components/LeftSidebar/LeftSidebar.vue b/src/components/LeftSidebar/LeftSidebar.vue
index eafa5bf88484..ff521d5813de 100644
--- a/src/components/LeftSidebar/LeftSidebar.vue
+++ b/src/components/LeftSidebar/LeftSidebar.vue
@@ -10,8 +10,8 @@
diff --git a/src/components/MessagesList/MessagesGroup/Message/Message.vue b/src/components/MessagesList/MessagesGroup/Message/Message.vue
index 0f76918cb085..13f96cca4a71 100644
--- a/src/components/MessagesList/MessagesGroup/Message/Message.vue
+++ b/src/components/MessagesList/MessagesGroup/Message/Message.vue
@@ -40,10 +40,10 @@
ref="messageButtonsBar"
class="message-buttons-bar"
:is-translation-available="isTranslationAvailable"
- :is-action-menu-open.sync="isActionMenuOpen"
- :is-emoji-picker-open.sync="isEmojiPickerOpen"
- :is-reactions-menu-open.sync="isReactionsMenuOpen"
- :is-forwarder-open.sync="isForwarderOpen"
+ v-model:is-action-menu-open="isActionMenuOpen"
+ v-model:is-emoji-picker-open="isEmojiPickerOpen"
+ v-model:is-reactions-menu-open="isReactionsMenuOpen"
+ v-model:is-forwarder-open="isForwarderOpen"
:can-react="canReact"
v-bind="{...$props, ...readInfoProps}"
@show-translate-dialog="isTranslateDialogOpen = true"
diff --git a/src/components/NewConversationDialog/NewConversationContactsPage.vue b/src/components/NewConversationDialog/NewConversationContactsPage.vue
index ad5c83362868..b69ffcfed797 100644
--- a/src/components/NewConversationDialog/NewConversationContactsPage.vue
+++ b/src/components/NewConversationDialog/NewConversationContactsPage.vue
@@ -24,7 +24,7 @@
@@ -44,7 +44,7 @@
@@ -29,7 +29,7 @@
diff --git a/src/components/NewConversationDialog/NewConversationSetupPage.vue b/src/components/NewConversationDialog/NewConversationSetupPage.vue
index 4501e16184c2..9dd2fd530fe4 100644
--- a/src/components/NewConversationDialog/NewConversationSetupPage.vue
+++ b/src/components/NewConversationDialog/NewConversationSetupPage.vue
@@ -113,8 +113,8 @@ export default {
get() {
return this.newConversation.displayName
},
- set(event) {
- this.updateNewConversation({ displayName: event.target.value })
+ set(value) {
+ this.updateNewConversation({ displayName: value })
},
},
@@ -122,8 +122,8 @@ export default {
get() {
return this.newConversation.description
},
- set(event) {
- this.updateNewConversation({ description: event.target.value })
+ set(value) {
+ this.updateNewConversation({ description: value })
},
},
@@ -170,8 +170,8 @@ export default {
get() {
return this.password
},
- set(event) {
- this.$emit('update:password', event.target.value)
+ set(value) {
+ this.$emit('update:password', value)
},
},
diff --git a/src/components/RightSidebar/Participants/ParticipantsTab.vue b/src/components/RightSidebar/Participants/ParticipantsTab.vue
index 217aa1604181..10f1e8f281d7 100644
--- a/src/components/RightSidebar/Participants/ParticipantsTab.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsTab.vue
@@ -9,21 +9,21 @@
diff --git a/src/components/SettingsDialog/SettingsDialog.vue b/src/components/SettingsDialog/SettingsDialog.vue
index 8fa6a82dac95..acf7b43ce1e0 100644
--- a/src/components/SettingsDialog/SettingsDialog.vue
+++ b/src/components/SettingsDialog/SettingsDialog.vue
@@ -4,7 +4,7 @@
-->
-
diff --git a/src/components/TopBar/TopBarMediaControls.vue b/src/components/TopBar/TopBarMediaControls.vue
index 319219bb5f76..fd0631e6d140 100644
--- a/src/components/TopBar/TopBarMediaControls.vue
+++ b/src/components/TopBar/TopBarMediaControls.vue
@@ -76,7 +76,7 @@
class="app-navigation-entry-utils-menu-button"
:boundaries-element="boundaryElement"
:container="container"
- :open.sync="screenSharingMenuOpen">
+ v-model:open="screenSharingMenuOpen">
diff --git a/src/components/UIShared/DialpadPanel.vue b/src/components/UIShared/DialpadPanel.vue
index 0f79f448694b..f634b6dc3f35 100644
--- a/src/components/UIShared/DialpadPanel.vue
+++ b/src/components/UIShared/DialpadPanel.vue
@@ -125,7 +125,7 @@ export default {
/**
* The conversation token of the message to be replied to.
*/
- value: {
+ modelValue: {
type: String,
default: '',
},
@@ -152,7 +152,7 @@ export default {
}
},
- emits: ['dial:type', 'update:value', 'submit'],
+ emits: ['dial:type', 'update:modelValue', 'submit'],
setup(props) {
const options = Object.values(regionCodes).map(region =>
@@ -180,13 +180,13 @@ export default {
if (this.dialing) {
this.$emit('dial:type', value)
} else {
- this.$emit('update:value', this.value + value)
+ this.$emit('update:modelValue', this.value + value)
}
},
dialCode(value) {
this.region = value
- this.$emit('update:value', value.dial_code)
+ this.$emit('update:modelValue', value.dial_code)
this.$nextTick(() => {
this.$refs.panel?.focus()
@@ -225,7 +225,7 @@ export default {
},
handleBackspace() {
- this.$emit('update:value', this.value.slice(0, -1))
+ this.$emit('update:modelValue', this.value.slice(0, -1))
}
},
}
diff --git a/src/components/UIShared/SearchBox.vue b/src/components/UIShared/SearchBox.vue
index 306309bdf42f..cb62af6d9bf2 100644
--- a/src/components/UIShared/SearchBox.vue
+++ b/src/components/UIShared/SearchBox.vue
@@ -5,7 +5,7 @@
-
+