@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@altimateai/ui-components",
3
- "version": "0.0.48",
3
+ "version": "0.0.50",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/AltimateAI/altimate-components.git"