ai-chat-bot-interface 1.6.21 → 1.6.22

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ai-chat-bot-interface",
3
3
  "private": false,
4
- "version": "1.6.21",
4
+ "version": "1.6.22",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "description": "A AI chat bot interface. (private)",
package/src/ChatUi.less CHANGED
@@ -293,3 +293,9 @@
293
293
  text-align: center;
294
294
  }
295
295
  }
296
+ .loading_row {
297
+ .flexrsc();
298
+ gap: 5px;
299
+ font-size: 10px;
300
+ margin-top: 8px;
301
+ }
package/src/ChatUi.vue CHANGED
@@ -138,9 +138,12 @@
138
138
  </div>
139
139
  </template>
140
140
  </template>
141
- <loading-icon2
141
+ <div
142
142
  v-if="isAnswering && index === historyList.length - 1"
143
- />
143
+ class="loading_row"
144
+ >
145
+ Ai努力生成中...<loading-icon2 />
146
+ </div>
144
147
  </div>
145
148
  </div>
146
149
  </div>