@hardimpactdev/craft-ui 0.0.23 → 0.0.25

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 (45) hide show
  1. package/dist/craft-ui.css +1 -1
  2. package/dist/craft-ui.js +18311 -16188
  3. package/dist/src/components/ai/chat-conversation/ChatConversation.vue.d.ts +21 -0
  4. package/dist/src/components/ai/chat-conversation/ChatConversationContent.vue.d.ts +21 -0
  5. package/dist/src/components/ai/chat-conversation/ChatConversationEmptyState.vue.d.ts +21 -0
  6. package/dist/src/components/ai/chat-conversation/ChatConversationScrollButton.vue.d.ts +21 -0
  7. package/dist/src/components/ai/chat-conversation/index.d.ts +6 -0
  8. package/dist/src/components/ai/chat-conversation/types.d.ts +6 -0
  9. package/dist/src/components/ai/chat-conversation/useChatConversation.d.ts +2 -0
  10. package/dist/src/components/ai/chat-message/ChatMessage.vue.d.ts +23 -0
  11. package/dist/src/components/ai/chat-message/ChatMessageContent.vue.d.ts +21 -0
  12. package/dist/src/components/ai/chat-message/ChatMessageToolbar.vue.d.ts +21 -0
  13. package/dist/src/components/ai/chat-message/index.d.ts +5 -0
  14. package/dist/src/components/ai/chat-message/types.d.ts +6 -0
  15. package/dist/src/components/ai/chat-message/useChatMessage.d.ts +2 -0
  16. package/dist/src/components/ai/chat-message-action/ChatMessageAction.vue.d.ts +23 -0
  17. package/dist/src/components/ai/chat-message-action/ChatMessageActions.vue.d.ts +21 -0
  18. package/dist/src/components/ai/chat-message-action/index.d.ts +2 -0
  19. package/dist/src/components/ai/chat-response/ChatResponse.vue.d.ts +9 -0
  20. package/dist/src/components/ai/chat-response/components/ChatResponseBlockquote.vue.d.ts +17 -0
  21. package/dist/src/components/ai/chat-response/components/ChatResponseBr.vue.d.ts +2 -0
  22. package/dist/src/components/ai/chat-response/components/ChatResponseCode.vue.d.ts +6 -0
  23. package/dist/src/components/ai/chat-response/components/ChatResponseCodespan.vue.d.ts +5 -0
  24. package/dist/src/components/ai/chat-response/components/ChatResponseDel.vue.d.ts +17 -0
  25. package/dist/src/components/ai/chat-response/components/ChatResponseEm.vue.d.ts +17 -0
  26. package/dist/src/components/ai/chat-response/components/ChatResponseHeading.vue.d.ts +20 -0
  27. package/dist/src/components/ai/chat-response/components/ChatResponseHr.vue.d.ts +2 -0
  28. package/dist/src/components/ai/chat-response/components/ChatResponseHtml.vue.d.ts +5 -0
  29. package/dist/src/components/ai/chat-response/components/ChatResponseImage.vue.d.ts +7 -0
  30. package/dist/src/components/ai/chat-response/components/ChatResponseLink.vue.d.ts +21 -0
  31. package/dist/src/components/ai/chat-response/components/ChatResponseList.vue.d.ts +22 -0
  32. package/dist/src/components/ai/chat-response/components/ChatResponseListItem.vue.d.ts +23 -0
  33. package/dist/src/components/ai/chat-response/components/ChatResponseParagraph.vue.d.ts +17 -0
  34. package/dist/src/components/ai/chat-response/components/ChatResponseStrong.vue.d.ts +17 -0
  35. package/dist/src/components/ai/chat-response/components/ChatResponseTable.vue.d.ts +8 -0
  36. package/dist/src/components/ai/chat-response/components/ChatResponseText.vue.d.ts +20 -0
  37. package/dist/src/components/ai/chat-response/components/index.d.ts +19 -0
  38. package/dist/src/components/ai/chat-response/index.d.ts +4 -0
  39. package/dist/src/components/ai/chat-response/renderTokens.d.ts +4 -0
  40. package/dist/src/components/ai/chat-response/types.d.ts +20 -0
  41. package/dist/src/components/ai/chat-suggestions/ChatSuggestion.vue.d.ts +11 -0
  42. package/dist/src/components/ai/chat-suggestions/ChatSuggestions.vue.d.ts +21 -0
  43. package/dist/src/components/ai/chat-suggestions/index.d.ts +2 -0
  44. package/dist/src/components/ai/index.d.ts +5 -0
  45. package/package.json +3 -1
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "types": "./dist/src/vite/defineCraftConfig.d.ts"
58
58
  }
59
59
  },
60
- "version": "0.0.23",
60
+ "version": "0.0.25",
61
61
  "type": "module",
62
62
  "scripts": {
63
63
  "dev": "vite",
@@ -100,6 +100,7 @@
100
100
  "laravel-vite-plugin": "^2.0.1",
101
101
  "laravel-vue-i18n": "^2.8.0",
102
102
  "lucide-vue-next": "^0.562.0",
103
+ "marked": "^17.0.2",
103
104
  "nanoid": "^5.1.6",
104
105
  "oxlint": "^1.39.0",
105
106
  "reka-ui": "^2.7.0",
@@ -114,6 +115,7 @@
114
115
  "vue-chartjs": "^5.3.3",
115
116
  "vue-input-otp": "^0.3.2",
116
117
  "vue-sonner": "^2.0.9",
118
+ "vue-stick-to-bottom": "^0.1.0",
117
119
  "zod": "^3.25.76"
118
120
  },
119
121
  "devDependencies": {