@altimateai/ui-components 0.0.71-beta.2 → 0.0.71
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 +2303 -2273
- package/dist/chatbotV2/index.d.ts +5 -1
- package/package.json +1 -1
|
@@ -4,7 +4,10 @@ export { x as AssistantMeta, w as ChatEvent, v as ChatEventStatus, z as ChatbotU
|
|
|
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';
|
|
7
|
+
import { B as ButtonProps } from '../Button-42Dj_nRE.js';
|
|
7
8
|
import 'zod';
|
|
9
|
+
import 'class-variance-authority/types';
|
|
10
|
+
import 'class-variance-authority';
|
|
8
11
|
|
|
9
12
|
declare const Chatbot: FC<ChatbotProps>;
|
|
10
13
|
|
|
@@ -104,8 +107,9 @@ interface StatusUpdatesProps {
|
|
|
104
107
|
}
|
|
105
108
|
declare const StatusUpdates: FC<StatusUpdatesProps>;
|
|
106
109
|
|
|
107
|
-
declare const ChatTriggerLink: ({ text }: {
|
|
110
|
+
declare const ChatTriggerLink: ({ text, buttonProps }: {
|
|
108
111
|
text: string;
|
|
112
|
+
buttonProps?: ButtonProps;
|
|
109
113
|
}) => react_jsx_runtime.JSX.Element;
|
|
110
114
|
|
|
111
115
|
declare const useAgentChat: () => {
|