@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.
- package/dist/craft-ui.css +1 -1
- package/dist/craft-ui.js +18311 -16188
- package/dist/src/components/ai/chat-conversation/ChatConversation.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-conversation/ChatConversationContent.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-conversation/ChatConversationEmptyState.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-conversation/ChatConversationScrollButton.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-conversation/index.d.ts +6 -0
- package/dist/src/components/ai/chat-conversation/types.d.ts +6 -0
- package/dist/src/components/ai/chat-conversation/useChatConversation.d.ts +2 -0
- package/dist/src/components/ai/chat-message/ChatMessage.vue.d.ts +23 -0
- package/dist/src/components/ai/chat-message/ChatMessageContent.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-message/ChatMessageToolbar.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-message/index.d.ts +5 -0
- package/dist/src/components/ai/chat-message/types.d.ts +6 -0
- package/dist/src/components/ai/chat-message/useChatMessage.d.ts +2 -0
- package/dist/src/components/ai/chat-message-action/ChatMessageAction.vue.d.ts +23 -0
- package/dist/src/components/ai/chat-message-action/ChatMessageActions.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-message-action/index.d.ts +2 -0
- package/dist/src/components/ai/chat-response/ChatResponse.vue.d.ts +9 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseBlockquote.vue.d.ts +17 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseBr.vue.d.ts +2 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseCode.vue.d.ts +6 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseCodespan.vue.d.ts +5 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseDel.vue.d.ts +17 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseEm.vue.d.ts +17 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseHeading.vue.d.ts +20 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseHr.vue.d.ts +2 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseHtml.vue.d.ts +5 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseImage.vue.d.ts +7 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseLink.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseList.vue.d.ts +22 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseListItem.vue.d.ts +23 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseParagraph.vue.d.ts +17 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseStrong.vue.d.ts +17 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseTable.vue.d.ts +8 -0
- package/dist/src/components/ai/chat-response/components/ChatResponseText.vue.d.ts +20 -0
- package/dist/src/components/ai/chat-response/components/index.d.ts +19 -0
- package/dist/src/components/ai/chat-response/index.d.ts +4 -0
- package/dist/src/components/ai/chat-response/renderTokens.d.ts +4 -0
- package/dist/src/components/ai/chat-response/types.d.ts +20 -0
- package/dist/src/components/ai/chat-suggestions/ChatSuggestion.vue.d.ts +11 -0
- package/dist/src/components/ai/chat-suggestions/ChatSuggestions.vue.d.ts +21 -0
- package/dist/src/components/ai/chat-suggestions/index.d.ts +2 -0
- package/dist/src/components/ai/index.d.ts +5 -0
- 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.
|
|
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": {
|