@altimateai/ui-components 0.0.37 → 0.0.38-beta.2
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/{Button-C4jhPGlR.d.ts → Button-CVsSwe4f.d.ts} +1 -1
- package/dist/CoachForm.css +1 -1
- package/dist/CoachForm.js +11043 -11001
- package/dist/Form.js +1743 -1511
- package/dist/Stack.js +1148 -1142
- package/dist/assets/icons/index.js +1 -1
- package/dist/chatbotV2/index.d.ts +2 -2
- package/dist/index.d.ts +4 -4
- package/dist/index2.js +14 -14
- package/dist/lineage/index.js +609 -616
- package/dist/redux-toolkit.modern.js +492 -485
- package/dist/shadcn/index.d.ts +2 -2
- package/dist/shadcn/index.js +2070 -2297
- package/dist/{types-BynvDMUq.d.ts → types-COyBAkqH.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -78,6 +78,7 @@ interface ChatbotProps {
|
|
|
78
78
|
modes?: Mode[];
|
|
79
79
|
classNames?: {
|
|
80
80
|
chatbot?: string;
|
|
81
|
+
chatMessages?: string;
|
|
81
82
|
};
|
|
82
83
|
}
|
|
83
84
|
interface ChatbotProviderProps extends ChatbotProps {
|
|
@@ -175,6 +176,7 @@ interface ChatState {
|
|
|
175
176
|
modes?: Mode[];
|
|
176
177
|
classNames?: {
|
|
177
178
|
chatbot?: string;
|
|
179
|
+
chatMessages?: string;
|
|
178
180
|
};
|
|
179
181
|
}
|
|
180
182
|
declare const todoItemSchema: z.ZodObject<{
|