vuchat 1.0.7 → 1.0.8-next
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/.github/workflows/publish.yaml +2 -0
- package/dist/index.js +34 -34
- package/dist/types/components/Header/index.d.ts +5 -0
- package/dist/types/pages/VuChat.d.ts +5 -1
- package/dist/types/pages/VuIconComponent.d.ts +8 -0
- package/dist/types/pages/chatbot/Chatbot.d.ts +5 -1
- package/dist/types/pages/chatbot/styled.d.ts +6 -1
- package/dist/types/pages/index.d.ts +1 -0
- package/dist/types/pages/styled.d.ts +5 -0
- package/dist/types.d.ts +15 -4
- package/package.json +2 -2
- package/rollup.config.ts +1 -1
- package/src/assets/icons/close.svg +1 -0
- package/src/assets/icons/download.svg +3 -3
- package/src/assets/icons/send.svg +13 -10
- package/src/components/Buttons/styled.ts +5 -2
- package/src/components/Header/index.tsx +28 -11
- package/src/components/Icons/VuIcon.tsx +1 -1
- package/src/components/SearchInput/SearchInput.tsx +4 -2
- package/src/components/SearchInput/styled.ts +2 -0
- package/src/components/TextArea/styled.ts +2 -0
- package/src/pages/VuChat.tsx +19 -10
- package/src/pages/VuIconComponent.tsx +45 -0
- package/src/pages/chatbot/Chatbot.tsx +135 -101
- package/src/pages/chatbot/components/ChatSection/components/Charts/Charts.tsx +5 -6
- package/src/pages/chatbot/components/ChatSection/components/EmptyState/EmptyState.tsx +2 -2
- package/src/pages/chatbot/components/ChatSection/components/EmptyState/styled.ts +1 -0
- package/src/pages/chatbot/components/ChatSection/components/ResponseCard/styled.ts +9 -5
- package/src/pages/chatbot/components/ChatSection/components/ResponseLoader/ResponseLoader.tsx +21 -6
- package/src/pages/chatbot/components/ChatSection/components/ResponseLoader/styled.ts +1 -0
- package/src/pages/chatbot/components/ChatSection/styled.ts +8 -4
- package/src/pages/chatbot/components/RecentConversations/styled.ts +2 -1
- package/src/pages/chatbot/styled.ts +29 -6
- package/src/pages/index.ts +1 -0
- package/src/pages/styled.ts +16 -1
- package/tailwind.config.ts +17 -3
|
@@ -13,6 +13,8 @@ jobs:
|
|
|
13
13
|
with:
|
|
14
14
|
node-version: "18.17.0"
|
|
15
15
|
registry-url: "https://registry.npmjs.org"
|
|
16
|
+
- name: Enable Corepack
|
|
17
|
+
run: corepack enable
|
|
16
18
|
- name: Install dependencies and build with Yarn 🔧
|
|
17
19
|
run: yarn install && yarn build
|
|
18
20
|
- name: Publish package on NPM 📦
|