@8wave/ai-elements 0.110.0-beta.1 → 0.110.0
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/ai-elements.es.js +678 -674
- package/dist/ai-elements.es.js.map +1 -1
- package/dist-vue/PkChatbot.js +1 -1
- package/dist-vue/PkChatbotMessages.js +1 -1
- package/dist-vue/PkChatbotViewChat.js +1 -1
- package/dist-vue/PkChatbotViewConversations.js +1 -1
- package/dist-vue/PkChatbotViewFiles.js +1 -1
- package/dist-vue/PkChatbotViewProfile.js +1 -1
- package/dist-vue/_chunks/{PkChatbot-CDciy1W-.js → PkChatbot-o7k7d-fj.js} +6 -6
- package/dist-vue/_chunks/{PkChatbot-CDciy1W-.js.map → PkChatbot-o7k7d-fj.js.map} +1 -1
- package/dist-vue/_chunks/{PkChatbotMessages-5dW-ElPy.js → PkChatbotMessages-BFlU046I.js} +3 -3
- package/dist-vue/_chunks/{PkChatbotMessages-5dW-ElPy.js.map → PkChatbotMessages-BFlU046I.js.map} +1 -1
- package/dist-vue/_chunks/PkChatbotStepPayload-BH6piqOi.js.map +1 -1
- package/dist-vue/_chunks/PkChatbotStepToolDetail-BJ7xUvgi.js.map +1 -1
- package/dist-vue/_chunks/PkChatbotSteps-DtV1beDc.js.map +1 -1
- package/dist-vue/_chunks/{PkChatbotViewChat-C9PQWz8z.js → PkChatbotViewChat-CNH_glPI.js} +4 -4
- package/dist-vue/_chunks/{PkChatbotViewChat-C9PQWz8z.js.map → PkChatbotViewChat-CNH_glPI.js.map} +1 -1
- package/dist-vue/_chunks/{PkChatbotViewConversations-Duc-I3pp.js → PkChatbotViewConversations-BENvHLZt.js} +2 -2
- package/dist-vue/_chunks/{PkChatbotViewConversations-Duc-I3pp.js.map → PkChatbotViewConversations-BENvHLZt.js.map} +1 -1
- package/dist-vue/_chunks/{PkChatbotViewFiles-B7KaE7rU.js → PkChatbotViewFiles-qmLESi1V.js} +2 -2
- package/dist-vue/_chunks/{PkChatbotViewFiles-B7KaE7rU.js.map → PkChatbotViewFiles-qmLESi1V.js.map} +1 -1
- package/dist-vue/_chunks/{PkChatbotViewProfile-tKK5Yazl.js → PkChatbotViewProfile-DzfZnitQ.js} +2 -2
- package/dist-vue/_chunks/{PkChatbotViewProfile-tKK5Yazl.js.map → PkChatbotViewProfile-DzfZnitQ.js.map} +1 -1
- package/dist-vue/_chunks/{PkToolShowDiagram-CNBaJZlp.js → PkToolShowDiagram-DuDp5EHd.js} +2 -2
- package/dist-vue/_chunks/{PkToolShowDiagram-CNBaJZlp.js.map → PkToolShowDiagram-DuDp5EHd.js.map} +1 -1
- package/dist-vue/_chunks/{useChatbotStore-DufJlucU.js → useChatbotStore-CiRAuq7v.js} +82 -78
- package/dist-vue/_chunks/useChatbotStore-CiRAuq7v.js.map +1 -0
- package/dist-vue/apps/web-component/src/composables/useChatbotAgent.d.ts +14 -14
- package/dist-vue/composables.js +1 -1
- package/dist-vue/index.js +7 -7
- package/dist-vue/index.js.map +1 -1
- package/dist-vue/packages/components/src/PkEditorMedia.d.ts +42 -42
- package/dist-vue/packages/components/src/chat/PkAgentSettingsPanel.d.ts +14 -14
- package/dist-vue/packages/composable/src/chatbot/useChatbotStore.d.ts +42 -42
- package/dist-vue/packages/models/src/schema/Agent.d.ts +112 -112
- package/dist-vue/packages/models/src/schema/Document.d.ts +126 -126
- package/dist-vue/packages/models/src/schema/Member.d.ts +14 -14
- package/dist-vue/packages/models/src/schema/Organization.d.ts +28 -28
- package/dist-vue/packages/models/src/schema/ReasoningChat.d.ts +28 -28
- package/dist-vue/packages/models/src/schema/SubAgent.d.ts +28 -28
- package/dist-vue/packages/models/src/schema/User.d.ts +42 -42
- package/dist-vue/style.css +1 -1
- package/package.json +2 -2
- package/dist-vue/_chunks/useChatbotStore-DufJlucU.js.map +0 -1
|
@@ -81,26 +81,26 @@ export declare function useChatbotAgent(options: {
|
|
|
81
81
|
signData?: string | undefined;
|
|
82
82
|
}[];
|
|
83
83
|
rawOptions?: {
|
|
84
|
-
type: import(
|
|
84
|
+
type: import('../../../../packages/models/src').MediaType.picture;
|
|
85
85
|
width: number;
|
|
86
86
|
height: number;
|
|
87
87
|
blurhash?: string | undefined;
|
|
88
88
|
} | {
|
|
89
|
-
type: import(
|
|
89
|
+
type: import('../../../../packages/models/src').MediaType.video;
|
|
90
90
|
width: number;
|
|
91
91
|
height: number;
|
|
92
92
|
duration: number;
|
|
93
93
|
} | {
|
|
94
|
-
type: import(
|
|
94
|
+
type: import('../../../../packages/models/src').MediaType.audio;
|
|
95
95
|
duration: number;
|
|
96
96
|
} | {
|
|
97
|
-
type: import(
|
|
97
|
+
type: import('../../../../packages/models/src').MediaType.office;
|
|
98
98
|
} | {
|
|
99
|
-
type: import(
|
|
99
|
+
type: import('../../../../packages/models/src').MediaType.archive;
|
|
100
100
|
} | {
|
|
101
|
-
type: import(
|
|
101
|
+
type: import('../../../../packages/models/src').MediaType.binary;
|
|
102
102
|
} | {
|
|
103
|
-
type: import(
|
|
103
|
+
type: import('../../../../packages/models/src').MediaType.executable;
|
|
104
104
|
} | undefined;
|
|
105
105
|
} | undefined;
|
|
106
106
|
logo?: string | undefined;
|
|
@@ -196,26 +196,26 @@ export declare function useChatbotAgent(options: {
|
|
|
196
196
|
signData?: string | undefined;
|
|
197
197
|
}[];
|
|
198
198
|
rawOptions?: {
|
|
199
|
-
type: import(
|
|
199
|
+
type: import('../../../../packages/models/src').MediaType.picture;
|
|
200
200
|
width: number;
|
|
201
201
|
height: number;
|
|
202
202
|
blurhash?: string | undefined;
|
|
203
203
|
} | {
|
|
204
|
-
type: import(
|
|
204
|
+
type: import('../../../../packages/models/src').MediaType.video;
|
|
205
205
|
width: number;
|
|
206
206
|
height: number;
|
|
207
207
|
duration: number;
|
|
208
208
|
} | {
|
|
209
|
-
type: import(
|
|
209
|
+
type: import('../../../../packages/models/src').MediaType.audio;
|
|
210
210
|
duration: number;
|
|
211
211
|
} | {
|
|
212
|
-
type: import(
|
|
212
|
+
type: import('../../../../packages/models/src').MediaType.office;
|
|
213
213
|
} | {
|
|
214
|
-
type: import(
|
|
214
|
+
type: import('../../../../packages/models/src').MediaType.archive;
|
|
215
215
|
} | {
|
|
216
|
-
type: import(
|
|
216
|
+
type: import('../../../../packages/models/src').MediaType.binary;
|
|
217
217
|
} | {
|
|
218
|
-
type: import(
|
|
218
|
+
type: import('../../../../packages/models/src').MediaType.executable;
|
|
219
219
|
} | undefined;
|
|
220
220
|
} | undefined;
|
|
221
221
|
logo?: string | undefined;
|
package/dist-vue/composables.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as e } from "./_chunks/createChatbotApiClient-CJ_5_3IT.js";
|
|
2
|
-
import { n as t } from "./_chunks/useChatbotStore-
|
|
2
|
+
import { n as t } from "./_chunks/useChatbotStore-CiRAuq7v.js";
|
|
3
3
|
import { t as n } from "./_chunks/src-DT8FLE4_.js";
|
|
4
4
|
import { t as r } from "./_chunks/useLocalizedString-PfaKjIQY.js";
|
|
5
5
|
import { y as i } from "./_chunks/utils-Coqik0XI.js";
|
package/dist-vue/index.js
CHANGED
|
@@ -8,14 +8,14 @@ import { n as he } from "./_chunks/createChatbotApiClient-CJ_5_3IT.js";
|
|
|
8
8
|
import { t as ge } from "./_chunks/PkChatbotAuth-C2adgBav.js";
|
|
9
9
|
import { t as _e } from "./_chunks/PkChatbotError-CBP2mf-n.js";
|
|
10
10
|
import { t as ve } from "./_chunks/PkStreamingMarkdown-D8_LwZMR.js";
|
|
11
|
-
import { a as ye, i as be, n as xe, r as Se } from "./_chunks/useChatbotStore-
|
|
11
|
+
import { a as ye, i as be, n as xe, r as Se } from "./_chunks/useChatbotStore-CiRAuq7v.js";
|
|
12
12
|
import "./_chunks/src-DT8FLE4_.js";
|
|
13
13
|
import { c as Ce, i as we, s as Te } from "./_chunks/message-RohfrdWS.js";
|
|
14
|
-
import { i as Ee, n as De, r as Oe, t as ke } from "./_chunks/PkChatbotMessages-
|
|
14
|
+
import { i as Ee, n as De, r as Oe, t as ke } from "./_chunks/PkChatbotMessages-BFlU046I.js";
|
|
15
15
|
import { t as Ae } from "./_chunks/useSafeLocalStorage-Ce3S1Ayn.js";
|
|
16
16
|
import { t as je } from "./_chunks/useDialogConfirm-KWz0ohCQ.js";
|
|
17
|
-
import { n as Me, r as Ne, t as Pe } from "./_chunks/PkChatbotViewConversations-
|
|
18
|
-
import { i as Fe, n as Ie, r as Le, t as Re } from "./_chunks/PkChatbotViewChat-
|
|
17
|
+
import { n as Me, r as Ne, t as Pe } from "./_chunks/PkChatbotViewConversations-BENvHLZt.js";
|
|
18
|
+
import { i as Fe, n as Ie, r as Le, t as Re } from "./_chunks/PkChatbotViewChat-CNH_glPI.js";
|
|
19
19
|
import { t as ze } from "./_chunks/useImageFallback-5vQIO0pC.js";
|
|
20
20
|
import { t as Be } from "./_chunks/useLocalizedString-PfaKjIQY.js";
|
|
21
21
|
import { n as Ve, t as He } from "./_chunks/PkRelativeTime--1cIphlA.js";
|
|
@@ -35,8 +35,8 @@ import { t as pn } from "./_chunks/PkChatbotStepPayload-BH6piqOi.js";
|
|
|
35
35
|
import { t as mn } from "./_chunks/PkChatbotStepToolDetail-BJ7xUvgi.js";
|
|
36
36
|
import { n as hn, t as gn } from "./_chunks/PkChatbotInput-D8x52cVm.js";
|
|
37
37
|
import { t as _n } from "./_chunks/PkChatbotEmptyState-BvaeBxhx.js";
|
|
38
|
-
import { t as vn } from "./_chunks/PkChatbotViewProfile-
|
|
39
|
-
import { t as yn } from "./_chunks/PkChatbot-
|
|
38
|
+
import { t as vn } from "./_chunks/PkChatbotViewProfile-DzfZnitQ.js";
|
|
39
|
+
import { t as yn } from "./_chunks/PkChatbot-o7k7d-fj.js";
|
|
40
40
|
import { i as bn, r as xn, t as Sn } from "./_chunks/PkToolShowSources-BvWOzVkQ.js";
|
|
41
41
|
import { t as Cn } from "./_chunks/PkToolShowEmail-CavhsPvi.js";
|
|
42
42
|
import { t as wn } from "./_chunks/PkToolShowMessage-DQojxDiV.js";
|
|
@@ -20106,7 +20106,7 @@ var uC = { class: "flex items-center gap-xs min-w-0" }, dC = { class: "truncate"
|
|
|
20106
20106
|
} : void 0]), 1032, ["message"]);
|
|
20107
20107
|
};
|
|
20108
20108
|
}
|
|
20109
|
-
}), rE = { class: "flex flex-col h-full bg-surface rounded-xl" }, iE = { class: "sticky z-1 top-0 bg-surface-1 flex items-center justify-between gap-sm p-sm border-b border-surface-
|
|
20109
|
+
}), rE = { class: "flex flex-col h-full bg-surface rounded-xl" }, iE = { class: "sticky z-1 top-0 bg-surface-1 flex items-center justify-between gap-sm p-sm border-b border-surface-3" }, aE = { class: "flex items-center gap-sm min-w-0" }, oE = ["title"], sE = {
|
|
20110
20110
|
key: 1,
|
|
20111
20111
|
class: "text-14 font-bold"
|
|
20112
20112
|
}, cE = { class: "flex-1 flex flex-col gap-md p-md overflow-y-auto min-h-0" }, lE = { class: "flex flex-col" }, uE = { class: "text-12 font-medium text-word-2 mb-xs block" }, dE = ["placeholder", "disabled"], fE = { class: "flex justify-end mt-xs" }, pE = {
|