ai-chat-bot-interface 1.6.0 → 1.6.2

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.0",
4
+ "version": "1.6.2",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "description": "A AI chat bot interface. (private)",
package/src/ChatUi.vue CHANGED
@@ -197,7 +197,7 @@ import OkIcon from './components/icons/OkIcon.vue';
197
197
  import AssistantReplay from './components/assistantReplay/assistantReplay.vue';
198
198
  import StoreList from './components/StoreList/StoreList.vue';
199
199
  import MarkdownViewer from './components/MarkdownPlan/MarkdownViewer.vue';
200
- import PersonalForm from '@/components/personalForm/personalForm.vue';
200
+ import PersonalForm from './components/personalForm/personalForm.vue';
201
201
 
202
202
  const chatOptions = computed(() => {
203
203
  return {
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed, onMounted, ref } from 'vue';
3
- import ArrowRight from '@/components/icons/ArrowRight.vue';
4
- import Popup from '@/components/popup/popup.vue';
3
+ import ArrowRight from '../icons/ArrowRight.vue';
4
+ import Popup from '../popup/popup.vue';
5
5
  import { showToast } from 'vant';
6
6
 
7
7
  const showPopup = ref(false);
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { computed, ref, watch } from 'vue';
3
- import ArrowDown from '@/components/icons/ArrowDown.vue';
3
+ import ArrowDown from '../icons/ArrowDown.vue';
4
4
 
5
5
  const props = defineProps({
6
6
  show: {