|
|
|
@ -21,7 +21,7 @@
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
v-if="canSendEmail && !isDemo"
|
|
|
|
v-if="canSendEmail && !isDemo && withSendCopyButton"
|
|
|
|
class="white-button !h-auto flex items-center space-x-1 w-full"
|
|
|
|
class="white-button !h-auto flex items-center space-x-1 w-full"
|
|
|
|
:disabled="isSendingCopy"
|
|
|
|
:disabled="isSendingCopy"
|
|
|
|
@click.prevent="sendCopyToEmail"
|
|
|
|
@click.prevent="sendCopyToEmail"
|
|
|
|
@ -36,7 +36,7 @@
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
v-if="!isWebView"
|
|
|
|
v-if="!isWebView && withDownloadButton"
|
|
|
|
class="base-button flex items-center space-x-1 w-full"
|
|
|
|
class="base-button flex items-center space-x-1 w-full"
|
|
|
|
:disabled="isDownloading"
|
|
|
|
:disabled="isDownloading"
|
|
|
|
@click.prevent="download"
|
|
|
|
@click.prevent="download"
|
|
|
|
@ -115,6 +115,16 @@ export default {
|
|
|
|
required: false,
|
|
|
|
required: false,
|
|
|
|
default: true
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
withDownloadButton: {
|
|
|
|
|
|
|
|
type: Boolean,
|
|
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
|
|
default: true
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
withSendCopyButton: {
|
|
|
|
|
|
|
|
type: Boolean,
|
|
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
|
|
default: true
|
|
|
|
|
|
|
|
},
|
|
|
|
withConfetti: {
|
|
|
|
withConfetti: {
|
|
|
|
type: Boolean,
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
required: false,
|
|
|
|
|