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.
Files changed (36) hide show
  1. package/.github/workflows/publish.yaml +2 -0
  2. package/dist/index.js +34 -34
  3. package/dist/types/components/Header/index.d.ts +5 -0
  4. package/dist/types/pages/VuChat.d.ts +5 -1
  5. package/dist/types/pages/VuIconComponent.d.ts +8 -0
  6. package/dist/types/pages/chatbot/Chatbot.d.ts +5 -1
  7. package/dist/types/pages/chatbot/styled.d.ts +6 -1
  8. package/dist/types/pages/index.d.ts +1 -0
  9. package/dist/types/pages/styled.d.ts +5 -0
  10. package/dist/types.d.ts +15 -4
  11. package/package.json +2 -2
  12. package/rollup.config.ts +1 -1
  13. package/src/assets/icons/close.svg +1 -0
  14. package/src/assets/icons/download.svg +3 -3
  15. package/src/assets/icons/send.svg +13 -10
  16. package/src/components/Buttons/styled.ts +5 -2
  17. package/src/components/Header/index.tsx +28 -11
  18. package/src/components/Icons/VuIcon.tsx +1 -1
  19. package/src/components/SearchInput/SearchInput.tsx +4 -2
  20. package/src/components/SearchInput/styled.ts +2 -0
  21. package/src/components/TextArea/styled.ts +2 -0
  22. package/src/pages/VuChat.tsx +19 -10
  23. package/src/pages/VuIconComponent.tsx +45 -0
  24. package/src/pages/chatbot/Chatbot.tsx +135 -101
  25. package/src/pages/chatbot/components/ChatSection/components/Charts/Charts.tsx +5 -6
  26. package/src/pages/chatbot/components/ChatSection/components/EmptyState/EmptyState.tsx +2 -2
  27. package/src/pages/chatbot/components/ChatSection/components/EmptyState/styled.ts +1 -0
  28. package/src/pages/chatbot/components/ChatSection/components/ResponseCard/styled.ts +9 -5
  29. package/src/pages/chatbot/components/ChatSection/components/ResponseLoader/ResponseLoader.tsx +21 -6
  30. package/src/pages/chatbot/components/ChatSection/components/ResponseLoader/styled.ts +1 -0
  31. package/src/pages/chatbot/components/ChatSection/styled.ts +8 -4
  32. package/src/pages/chatbot/components/RecentConversations/styled.ts +2 -1
  33. package/src/pages/chatbot/styled.ts +29 -6
  34. package/src/pages/index.ts +1 -0
  35. package/src/pages/styled.ts +16 -1
  36. 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 📦