@altimateai/ui-components 0.0.48 → 0.0.50
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 +9985 -10068
- package/dist/Stack.js +317 -316
- package/dist/TagsInput.js +2615 -2469
- package/dist/assets/icons/index.js +1 -1
- 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 +1 -1
- package/dist/index2.js +6 -6
- package/dist/lineage/index.js +2 -2
- package/dist/main.js +146 -146
- package/dist/redux-toolkit.modern.js +1 -1
- package/dist/shadcn/index.d.ts +16 -8
- package/dist/shadcn/index.js +3 -3
- package/dist/storybook/Combobox.stories.tsx +983 -79
- package/dist/{types-CqeMsC8t.d.ts → types-oWZJEjV7.d.ts} +1 -5
- package/package.json +1 -1
|
@@ -57,7 +57,6 @@ interface ChatbotUrls {
|
|
|
57
57
|
interface Datamate {
|
|
58
58
|
id: string;
|
|
59
59
|
label: string;
|
|
60
|
-
endAdornment?: ReactNode;
|
|
61
60
|
}
|
|
62
61
|
interface Mode {
|
|
63
62
|
value: string;
|
|
@@ -73,14 +72,13 @@ interface ChatbotProps {
|
|
|
73
72
|
contextOptions?: ContextOption[];
|
|
74
73
|
placeholder?: string;
|
|
75
74
|
autoFocus?: boolean;
|
|
76
|
-
enableDatamatesSelection?: boolean;
|
|
77
|
-
datamates?: Datamate[];
|
|
78
75
|
modes?: Mode[];
|
|
79
76
|
classNames?: {
|
|
80
77
|
chatbot?: string;
|
|
81
78
|
chatMessages?: string;
|
|
82
79
|
};
|
|
83
80
|
initialMessage?: string;
|
|
81
|
+
questionFormLeftActions?: ReactNode[];
|
|
84
82
|
}
|
|
85
83
|
interface ChatbotProviderProps extends ChatbotProps {
|
|
86
84
|
taskLabel?: keyof typeof TaskLabels;
|
|
@@ -193,8 +191,6 @@ interface ChatState {
|
|
|
193
191
|
feedback?: ReactNode;
|
|
194
192
|
questionFormButtons?: (userPrompt: string, onAccept: (improvedPrompt: string) => void) => ReactNode;
|
|
195
193
|
};
|
|
196
|
-
enableDatamatesSelection?: boolean;
|
|
197
|
-
datamates?: Datamate[];
|
|
198
194
|
modes?: Mode[];
|
|
199
195
|
classNames?: {
|
|
200
196
|
chatbot?: string;
|