@mixd-id/web-scaffold 0.1.230406360 → 0.1.230406362
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/package.json
CHANGED
|
@@ -484,13 +484,13 @@ export default{
|
|
|
484
484
|
|
|
485
485
|
if(this.newImage.element){
|
|
486
486
|
const aDiv = document.createElement("div")
|
|
487
|
-
aDiv.innerHTML = "<img src=\"" + url + "\" " + propHtml.join(' ') + "/>"
|
|
487
|
+
aDiv.innerHTML = "<img src=\"" + url + "\" " + propHtml.join(' ') + " class='inline'/>"
|
|
488
488
|
this.newImage.element.parentNode.replaceChild(aDiv.firstChild, this.newImage.element)
|
|
489
489
|
}
|
|
490
490
|
|
|
491
491
|
else{
|
|
492
492
|
document.execCommand("insertHTML", false,
|
|
493
|
-
"<img src=\"" + url + "\" " + propHtml.join(' ') + "/>");
|
|
493
|
+
"<img src=\"" + url + "\" " + propHtml.join(' ') + " class='inline'/>");
|
|
494
494
|
}
|
|
495
495
|
|
|
496
496
|
this.$refs.imageModal.close()
|
|
@@ -112,8 +112,6 @@
|
|
|
112
112
|
<UserActionCondition ref="userActionCondition" />
|
|
113
113
|
</div>
|
|
114
114
|
|
|
115
|
-
<pre class="text-xs break-all">{{ instance }}</pre>
|
|
116
|
-
|
|
117
115
|
</div>
|
|
118
116
|
</template>
|
|
119
117
|
|
|
@@ -142,6 +140,9 @@ export default{
|
|
|
142
140
|
{ type: "reply", text:"Reply" },
|
|
143
141
|
{ type: "delay", text:"Delay" },
|
|
144
142
|
{ type: "reset", text:"Reset" },
|
|
143
|
+
{ type: "endChat", text:"End Chat" },
|
|
144
|
+
{ type: "startChat", text:"Start Chat" },
|
|
145
|
+
{ type: "endConversation", text:"End Conversation" },
|
|
145
146
|
]
|
|
146
147
|
return this.eventOpt[this.instance.key]?.outputs ?? []
|
|
147
148
|
},
|