@factorialco/f0-react 1.205.1 → 1.207.0

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.
@@ -107,11 +107,12 @@ export declare type ActionDefinition = DropdownItemSeparator | (Omit<DropdownIte
107
107
  type?: "primary" | "secondary" | "other";
108
108
  });
109
109
 
110
- export declare const ActionItem: ({ title, status }: ActionItemProps) => JSX_2.Element;
110
+ export declare const ActionItem: ({ title, status, inGroup }: ActionItemProps) => JSX_2.Element;
111
111
 
112
112
  export declare interface ActionItemProps {
113
113
  title: string;
114
- status: "inProgress" | "executing" | "completed";
114
+ status?: "inProgress" | "executing" | "completed";
115
+ inGroup?: boolean;
115
116
  }
116
117
 
117
118
  declare type ActionProps = {
@@ -1717,6 +1718,9 @@ declare const defaultTranslations: {
1717
1718
  readonly scrollToBottom: "Scroll to bottom";
1718
1719
  readonly welcome: "Ask or create with One";
1719
1720
  readonly initialMessage: "How can I help you today?";
1721
+ readonly inputPlaceholder: "Write something here...";
1722
+ readonly stopAnswerGeneration: "Stop generating";
1723
+ readonly sendMessage: "Send message";
1720
1724
  };
1721
1725
  readonly select: {
1722
1726
  readonly noResults: "No results found";
@@ -5045,11 +5049,6 @@ declare module "@tiptap/core" {
5045
5049
  }
5046
5050
 
5047
5051
 
5048
- declare namespace Calendar {
5049
- var displayName: string;
5050
- }
5051
-
5052
-
5053
5052
  declare module "@tiptap/core" {
5054
5053
  interface Commands<ReturnType> {
5055
5054
  moodTracker: {
@@ -5057,3 +5056,8 @@ declare module "@tiptap/core" {
5057
5056
  };
5058
5057
  }
5059
5058
  }
5059
+
5060
+
5061
+ declare namespace Calendar {
5062
+ var displayName: string;
5063
+ }