From c0e14308efc15515bf867193a4e76539295dc40f Mon Sep 17 00:00:00 2001 From: Germey Date: Tue, 11 Feb 2025 22:13:07 +0800 Subject: [PATCH] Update deepseek experience (#174) Co-authored-by: AceDataCloud --- ...-f3bb8d6f-429e-4a03-b676-358e49a10f30.json | 7 + package.json | 2 +- src/assets/base.scss | 3 - src/assets/css/tailwind.css | 1 + src/components/chat/InputBox.vue | 304 ++++---- src/components/chat/Message.vue | 10 +- src/pages/chat/Conversation.vue | 45 +- tailwind.config.js | 9 +- yarn.lock | 674 +++++++++--------- 9 files changed, 587 insertions(+), 468 deletions(-) create mode 100644 change/@acedatacloud-nexior-f3bb8d6f-429e-4a03-b676-358e49a10f30.json delete mode 100644 src/assets/base.scss diff --git a/change/@acedatacloud-nexior-f3bb8d6f-429e-4a03-b676-358e49a10f30.json b/change/@acedatacloud-nexior-f3bb8d6f-429e-4a03-b676-358e49a10f30.json new file mode 100644 index 00000000..4a9bf699 --- /dev/null +++ b/change/@acedatacloud-nexior-f3bb8d6f-429e-4a03-b676-358e49a10f30.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "update deepseek experience", + "packageName": "@acedatacloud/nexior", + "email": "office@acedata.cloud", + "dependentChangeType": "patch" +} diff --git a/package.json b/package.json index 14c5996e..a02f9fa6 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ "prettier": "^2.6.2", "rollup-plugin-string": "^3.0.0", "sass": "^1.38.1", - "tailwindcss": "^3.4.0", + "tailwindcss": "^2.2.8", "typescript": "^4.9.5", "vite": "^2.9.16", "vite-bundle-visualizer": "1.0", diff --git a/src/assets/base.scss b/src/assets/base.scss deleted file mode 100644 index b5c61c95..00000000 --- a/src/assets/base.scss +++ /dev/null @@ -1,3 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; diff --git a/src/assets/css/tailwind.css b/src/assets/css/tailwind.css index 7c05d4dd..b5c61c95 100644 --- a/src/assets/css/tailwind.css +++ b/src/assets/css/tailwind.css @@ -1,2 +1,3 @@ +@tailwind base; @tailwind components; @tailwind utilities; diff --git a/src/components/chat/InputBox.vue b/src/components/chat/InputBox.vue index c0244b2f..8b871237 100644 --- a/src/components/chat/InputBox.vue +++ b/src/components/chat/InputBox.vue @@ -1,35 +1,43 @@