@hivegpt/hiveai-angular 0.0.252 → 0.0.253
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/bundles/hivegpt-hiveai-angular.umd.js +6 -1
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/esm2015/lib/components/bot-html-editor/bot-html-editor.component.js +1 -2
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +7 -1
- package/fesm2015/hivegpt-hiveai-angular.js +6 -1
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/hivegpt-hiveai-angular.metadata.json +1 -1
- package/lib/components/bot-html-editor/bot-html-editor.component.d.ts +2 -1
- package/lib/components/bot-html-editor/bot-html-editor.component.d.ts.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1523,17 +1523,23 @@
|
|
|
1523
1523
|
if (this.currentIndexForEditor == -1) {
|
|
1524
1524
|
this.currentIndexForEditor = index;
|
|
1525
1525
|
this.currentMessageForEditor = this.chatLog[index].message;
|
|
1526
|
+
console.log("HTML1");
|
|
1527
|
+
console.log(this.currentMessageForEditor);
|
|
1526
1528
|
this.cdr.detectChanges();
|
|
1527
1529
|
}
|
|
1528
1530
|
else {
|
|
1529
1531
|
if (this.currentIndexForEditor == index) {
|
|
1530
1532
|
this.currentMessageForEditor += this.chatLog[index].message;
|
|
1531
1533
|
this.cdr.detectChanges();
|
|
1534
|
+
console.log("HTML2");
|
|
1535
|
+
console.log(this.currentMessageForEditor);
|
|
1532
1536
|
}
|
|
1533
1537
|
else {
|
|
1534
1538
|
this.currentIndexForEditor = index;
|
|
1535
1539
|
this.currentMessageForEditor = this.chatLog[index].message;
|
|
1536
1540
|
this.cdr.detectChanges();
|
|
1541
|
+
console.log("HTML3");
|
|
1542
|
+
console.log(this.currentMessageForEditor);
|
|
1537
1543
|
}
|
|
1538
1544
|
}
|
|
1539
1545
|
this.chatLog[index].isEditor = true;
|
|
@@ -2138,7 +2144,6 @@
|
|
|
2138
2144
|
|
|
2139
2145
|
var BotHtmlEditorComponent = /** @class */ (function () {
|
|
2140
2146
|
function BotHtmlEditorComponent() {
|
|
2141
|
-
this.editorContent = '';
|
|
2142
2147
|
this.quillConfig = {
|
|
2143
2148
|
toolbar: [
|
|
2144
2149
|
[{ header: '1' }, { header: '2' }, { font: [] }],
|