@altimateai/ui-components 0.0.45 → 0.0.47-beta.1
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/CoachForm.js +12630 -12992
- package/dist/TagsInput.js +1892 -1880
- package/dist/chatbotV2/index.d.ts +6 -6
- package/dist/chatbotV2/index.js +5 -5
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/lineage/index.js +2123 -2105
- package/dist/main.js +2 -2
- package/dist/redux-toolkit.modern.js +1420 -1141
- package/dist/shadcn/index.d.ts +5 -1
- package/dist/{types-B9-bNXLo.d.ts → types-B6AwtPBm.d.ts} +1 -5
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React__default, { FC } from 'react';
|
|
2
|
-
import { j as ChatbotProps, k as ChatbotProviderProps, m as ChatState, A as Artifact, n as ContextOption, I as InteractionRequest, o as ChatMessage, p as AgentAction, q as ChatResponse, F as Feedback, r as LoadingState, s as ChatSession, i as Citation, t as TodoItem, M as MessageAttachment, u as AgentStreamResponse } from '../types-
|
|
3
|
-
export { v as AssistantMeta, x as ChatbotUrls, D as Datamate, w as FileUploadProps, J as FinalResponseData, B as InteractionChoice, z as InteractionType, y as Mode, H as ProgressUpdate, G as ToolUsageData, U as UploadedFile, K as agentStreamResponseSchema, E as todoItemSchema } from '../types-
|
|
2
|
+
import { j as ChatbotProps, k as ChatbotProviderProps, m as ChatState, A as Artifact, n as ContextOption, I as InteractionRequest, o as ChatMessage, p as AgentAction, q as ChatResponse, F as Feedback, r as LoadingState, s as ChatSession, i as Citation, t as TodoItem, M as MessageAttachment, u as AgentStreamResponse } from '../types-B6AwtPBm.js';
|
|
3
|
+
export { v as AssistantMeta, x as ChatbotUrls, D as Datamate, w as FileUploadProps, J as FinalResponseData, B as InteractionChoice, z as InteractionType, y as Mode, H as ProgressUpdate, G as ToolUsageData, U as UploadedFile, K as agentStreamResponseSchema, E as todoItemSchema } from '../types-B6AwtPBm.js';
|
|
4
4
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
5
5
|
import { UnknownAction } from '@reduxjs/toolkit';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -130,9 +130,9 @@ interface UpdateModePayload {
|
|
|
130
130
|
sessionId: string;
|
|
131
131
|
mode: string;
|
|
132
132
|
}
|
|
133
|
-
interface
|
|
133
|
+
interface UpdateDatamateInSessionPayload {
|
|
134
134
|
sessionId: string;
|
|
135
|
-
datamates
|
|
135
|
+
datamates: string[];
|
|
136
136
|
}
|
|
137
137
|
declare const initialState: ChatState;
|
|
138
138
|
declare const createSession: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
@@ -175,7 +175,7 @@ declare const clearContext: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
|
175
175
|
sessionId: string;
|
|
176
176
|
}, "chat/clearContext">;
|
|
177
177
|
declare const updateMode: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateModePayload, "chat/updateMode">;
|
|
178
|
-
declare const
|
|
178
|
+
declare const updateDatamateInSession: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateDatamateInSessionPayload, "chat/updateDatamateInSession">;
|
|
179
179
|
declare const setSessions: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, ChatSession>, "chat/setSessions">;
|
|
180
180
|
declare const resetSession: _reduxjs_toolkit.ActionCreatorWithoutPayload<"chat/resetSession">;
|
|
181
181
|
|
|
@@ -275,4 +275,4 @@ declare const Citations: ({ citations, frontEndUrl, }: {
|
|
|
275
275
|
frontEndUrl: string;
|
|
276
276
|
}) => JSX.Element | null;
|
|
277
277
|
|
|
278
|
-
export { AgentAction, AgentStreamResponse, Artifact, Artifacts, CancelGenerationButton, ChatMessage, ChatProvider, ChatResponse, ChatSession, ChatState, ChatTriggerLink, ChatbotProps, ChatbotProviderProps, Chatbot as ChatbotV2, Citations, CoachAI, ContextOption, ContextPanel, Feedback, FeedbackButtons, InteractionPrompt, InteractionRequest, LoadingIndicator, LoadingState, MessageAttachment, MessageItem, MessageList, MessageMenu, QuestionForm, RegenerateButton, StatusUpdates, TodoItem, addAction, addMessage, clearActions, clearContext, clearHistory, clearTodos, createSession, deleteMessage, initialState, processAgentMessageContent, processAgentStream, processExistingConversation, processPlaygroundSessionTurns, resetSession, sendMessageAndProcessStream, setAbortController, setCurrentSession, setError, setLoadingState, setSelectedModel, setSessions, setTodos, streamResponseToAgentMessages, updateContext,
|
|
278
|
+
export { AgentAction, AgentStreamResponse, Artifact, Artifacts, CancelGenerationButton, ChatMessage, ChatProvider, ChatResponse, ChatSession, ChatState, ChatTriggerLink, ChatbotProps, ChatbotProviderProps, Chatbot as ChatbotV2, Citations, CoachAI, ContextOption, ContextPanel, Feedback, FeedbackButtons, InteractionPrompt, InteractionRequest, LoadingIndicator, LoadingState, MessageAttachment, MessageItem, MessageList, MessageMenu, QuestionForm, RegenerateButton, StatusUpdates, TodoItem, addAction, addMessage, clearActions, clearContext, clearHistory, clearTodos, createSession, deleteMessage, initialState, processAgentMessageContent, processAgentStream, processExistingConversation, processPlaygroundSessionTurns, resetSession, sendMessageAndProcessStream, setAbortController, setCurrentSession, setError, setLoadingState, setSelectedModel, setSessions, setTodos, streamResponseToAgentMessages, updateContext, updateDatamateInSession, updateMessageFeedback, updateMode, useAgentChat, useChatContext };
|
package/dist/chatbotV2/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as
|
|
1
|
+
import { A as a, b as t, a as o, g as n, C as r, m as i, c as d, d as c, F as g, I as C, L as S, n as u, M as l, e as p, f as m, Q as M, R as A, S as h, H as x, x as I, o as L, J as P, P as T, z as b, N as k, r as B, B as F, q as R, k as f, p as v, j as y, l as E, W as D, s as G, G as H, w as Q, E as U, D as V, v as j, V as q, K as w, i as z, t as J, O as K, U as N, y as O, T as W, h as X, u as Y } from "../CoachForm.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
3
|
+
a as Artifacts,
|
|
4
4
|
t as CancelGenerationButton,
|
|
5
5
|
o as ChatProvider,
|
|
6
6
|
n as ChatTriggerLink,
|
|
@@ -10,8 +10,8 @@ export {
|
|
|
10
10
|
c as ContextPanel,
|
|
11
11
|
g as FeedbackButtons,
|
|
12
12
|
C as InteractionPrompt,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
S as LoadingIndicator,
|
|
14
|
+
u as LoadingState,
|
|
15
15
|
l as MessageItem,
|
|
16
16
|
p as MessageList,
|
|
17
17
|
m as MessageMenu,
|
|
@@ -44,7 +44,7 @@ export {
|
|
|
44
44
|
z as streamResponseToAgentMessages,
|
|
45
45
|
J as todoItemSchema,
|
|
46
46
|
K as updateContext,
|
|
47
|
-
N as
|
|
47
|
+
N as updateDatamateInSession,
|
|
48
48
|
O as updateMessageFeedback,
|
|
49
49
|
W as updateMode,
|
|
50
50
|
X as useAgentChat,
|
package/dist/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import { HTMLAttributes, ButtonHTMLAttributes, ReactNode, FC, MouseEvent } from
|
|
|
3
3
|
import { B as ButtonProps } from './Button-CVsSwe4f.js';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { PlotParams } from 'react-plotly.js';
|
|
6
|
-
import { T as TaskLabels, a as TeamMateContextProps, b as TeamMateState, c as TeamMateConfig, d as TeamMateActionType, e as TeamMateAvailability } from './types-
|
|
7
|
-
export { i as Citation, f as CoachAiConfirmationResponse, C as CoachAiResponse, g as ContentCategory, L as Learning, P as PersonalizationScope, h as TeamMateComponentProps, l as learningSchema } from './types-
|
|
6
|
+
import { T as TaskLabels, a as TeamMateContextProps, b as TeamMateState, c as TeamMateConfig, d as TeamMateActionType, e as TeamMateAvailability } from './types-B6AwtPBm.js';
|
|
7
|
+
export { i as Citation, f as CoachAiConfirmationResponse, C as CoachAiResponse, g as ContentCategory, L as Learning, P as PersonalizationScope, h as TeamMateComponentProps, l as learningSchema } from './types-B6AwtPBm.js';
|
|
8
8
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
9
9
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
10
10
|
import * as immer from 'immer';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { j as e, i as s, h as r, C as t, D as n, L as i, T as m, m as c, l
|
|
1
|
+
import { j as e, i as s, h as r, C as t, D as n, L as i, T as m, m as c, l, k as p } from "./main.js";
|
|
2
2
|
import { C as T, T as v } from "./Table.js";
|
|
3
|
-
import {
|
|
3
|
+
import { ax as u, am as M, ak as P, aw as d, av as f, an as h, au as x, al as A, aA as g, aB as y, az as S, at as B, ay as b, aq as j, ar as D, as as F, ap as G } from "./CoachForm.js";
|
|
4
4
|
import { A as w, C as I, I as z } from "./redux-toolkit.modern.js";
|
|
5
5
|
import { a2 as H } from "./Stack.js";
|
|
6
6
|
export {
|
|
@@ -34,7 +34,7 @@ export {
|
|
|
34
34
|
m as TeamMateProvider,
|
|
35
35
|
c as TeamMates,
|
|
36
36
|
F as TeamMatesConfig,
|
|
37
|
-
|
|
37
|
+
l as TeammateActions,
|
|
38
38
|
G as learningSchema,
|
|
39
|
-
|
|
39
|
+
p as useTeamMateContext
|
|
40
40
|
};
|