@mobileaction/action-kit 1.58.0 → 1.58.1-beta.20260302124652
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/action-kit.mjs +175 -171
- package/dist/{annotations-B3JpQLgi.js → annotations-BhvhQ0T6.js} +1 -1
- package/dist/components/chatbot/MaChatbotFeedbackPanel.vue.d.ts +14 -0
- package/dist/components/chatbot/MaChatbotInputArea.vue.d.ts +22 -0
- package/dist/components/chatbot/MaChatbotMessageBubble.vue.d.ts +15 -0
- package/dist/components/chatbot/MaChatbotPromptStarters.vue.d.ts +15 -0
- package/dist/components/chatbot/composables/useFeedback.d.ts +11 -0
- package/dist/components/chatbot/composables/useMaChatbot.d.ts +17 -0
- package/dist/components/chatbot/composables/useMessages.d.ts +43 -0
- package/dist/components/chatbot/constants.d.ts +9 -0
- package/dist/components/chatbot/index.vue.d.ts +70 -0
- package/dist/components/chatbot/plugin.d.ts +23 -0
- package/dist/components/chatbot/stories/default.stories.d.ts +7 -0
- package/dist/components/chatbot/types.d.ts +87 -0
- package/dist/components/chatbot/utils.d.ts +6 -0
- package/dist/components/date-picker-2/index.vue.d.ts +0 -1
- package/dist/components/date-picker-2/stories/default.stories.d.ts +2 -0
- package/dist/components/date-picker-2/types.d.ts +7 -1
- package/dist/{export-data-B5NYFmFZ.js → export-data-DnC9d-sd.js} +1 -1
- package/dist/{exporting-DV8Mgxs9.js → exporting-B7mAf03M.js} +1 -1
- package/dist/{funnel-RxY__H41.js → funnel-CEWXLfUD.js} +1 -1
- package/dist/{index-DGdUw0gD.js → index-DMf_qtJ9.js} +10918 -9956
- package/dist/index.d.ts +4 -0
- package/dist/{map-ChWGssmi.js → map-DMyXppWv.js} +1 -1
- package/dist/{offline-exporting-BqKSTca8.js → offline-exporting-ClAybQAO.js} +1 -1
- package/dist/{stock-DLIqV7oP.js → stock-Dlx9teS0.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{venn-BAKlFZdh.js → venn-Dsb_Mzdf.js} +1 -1
- package/dist/{wordcloud-J1uQjMdy.js → wordcloud-C63iQ3vv.js} +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -138,6 +138,10 @@ export * from './components/upload/types';
|
|
|
138
138
|
export * from './components/typography/types';
|
|
139
139
|
export { default as MaUpload } from './components/upload/index.vue';
|
|
140
140
|
export { default as MaWatchlistButton } from './components/watchlist-button/index.vue';
|
|
141
|
+
export type { MaChatbotEventType, MaChatbotGuardrailViolation, MaChatbotMessage, MaChatbotMessageStatus, MaChatbotPluginOptions, MaChatbotStreamEvent, MaChatbotSuggestedPrompt, SendMessageOptions } from './components/chatbot/types';
|
|
142
|
+
export { default as MaChatbot } from './components/chatbot/index.vue';
|
|
143
|
+
export { createMaChatbot, MaChatbotSymbol } from './components/chatbot/plugin';
|
|
144
|
+
export { useMaChatbot } from './components/chatbot/composables/useMaChatbot';
|
|
141
145
|
export * from './config/types';
|
|
142
146
|
export { default as ActionKit } from './config/plugin';
|
|
143
147
|
export { ActionKitSymbol } from './config/constants';
|