feat: update tool-chain to latest (#7975)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Shivam Mishra
2023-09-27 14:02:34 +05:30
committed by GitHub
parent e8b7e791a5
commit a88d155dd7
162 changed files with 3566 additions and 2884 deletions

View File

@@ -1,3 +1,4 @@
<!-- eslint-disable vue/no-mutating-props -->
<template>
<woot-modal :show.sync="show" :on-close="onClose">
<woot-modal-header

View File

@@ -1,3 +1,4 @@
<!-- eslint-disable vue/no-mutating-props -->
<template>
<modal :show.sync="show" :on-close="onClose">
<woot-modal-header

View File

@@ -48,7 +48,7 @@
v-if="enabledOptions['copy']"
:option="{
icon: 'clipboard',
label: this.$t('CONVERSATION.CONTEXT_MENU.COPY'),
label: $t('CONVERSATION.CONTEXT_MENU.COPY'),
}"
variant="icon"
@click="handleCopy"
@@ -57,7 +57,7 @@
v-if="enabledOptions['copy']"
:option="{
icon: 'translate',
label: this.$t('CONVERSATION.CONTEXT_MENU.TRANSLATE'),
label: $t('CONVERSATION.CONTEXT_MENU.TRANSLATE'),
}"
variant="icon"
@click="handleTranslate"
@@ -66,7 +66,7 @@
<menu-item
:option="{
icon: 'link',
label: this.$t('CONVERSATION.CONTEXT_MENU.COPY_PERMALINK'),
label: $t('CONVERSATION.CONTEXT_MENU.COPY_PERMALINK'),
}"
variant="icon"
@click="copyLinkToMessage"
@@ -75,9 +75,7 @@
v-if="enabledOptions['cannedResponse']"
:option="{
icon: 'comment-add',
label: this.$t(
'CONVERSATION.CONTEXT_MENU.CREATE_A_CANNED_RESPONSE'
),
label: $t('CONVERSATION.CONTEXT_MENU.CREATE_A_CANNED_RESPONSE'),
}"
variant="icon"
@click="showCannedResponseModal"
@@ -87,7 +85,7 @@
v-if="enabledOptions['delete']"
:option="{
icon: 'delete',
label: this.$t('CONVERSATION.CONTEXT_MENU.DELETE'),
label: $t('CONVERSATION.CONTEXT_MENU.DELETE'),
}"
variant="icon"
@click="openDeleteModal"

View File

@@ -3,7 +3,8 @@
<div
ref="content"
:class="{
'shrink-container after:shrink-gradient-light dark:after:shrink-gradient-dark': shrink,
'shrink-container after:shrink-gradient-light dark:after:shrink-gradient-dark':
shrink,
}"
>
<slot />

View File

@@ -5,7 +5,7 @@
</div>
<div class="conversation-details">
<div class="meta-wrap">
<div class="flex-container ">
<div class="flex-container">
<woot-label
class="conversation-id"
:title="`#${id}`"

View File

@@ -70,7 +70,9 @@ export default {
background: white;
&.is-focused {
box-shadow: 0 0 0 1px var(--color-woot), 0 0 2px 2px var(--w-100);
box-shadow:
0 0 0 1px var(--color-woot),
0 0 2px 2px var(--w-100);
}
}