@factorialco/f0-react 1.282.0 → 1.284.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.
@@ -2331,6 +2331,7 @@ declare const defaultTranslations: {
2331
2331
  readonly ai: {
2332
2332
  readonly openChat: "Open Chat with One AI";
2333
2333
  readonly closeChat: "Close Chat with One AI";
2334
+ readonly startNewChat: "Start new chat";
2334
2335
  readonly scrollToBottom: "Scroll to bottom";
2335
2336
  readonly welcome: "Ask or create with One";
2336
2337
  readonly defaultInitialMessage: "How can I help you today?";
@@ -3604,6 +3605,12 @@ export declare interface Message {
3604
3605
  dateTime: string;
3605
3606
  }
3606
3607
 
3608
+ export declare const MessageSources: ({ sources }: MessageSourcesProps) => JSX_2.Element | null;
3609
+
3610
+ export declare type MessageSourcesProps = {
3611
+ sources: Source[];
3612
+ };
3613
+
3607
3614
  declare type MetadataAction = {
3608
3615
  icon: IconType;
3609
3616
  label: string;
@@ -5203,6 +5210,13 @@ export declare type SortingsStateMultiple = {
5203
5210
 
5204
5211
  export declare type SortOrder = "asc" | "desc";
5205
5212
 
5213
+ declare type Source = {
5214
+ title: string;
5215
+ link?: string;
5216
+ icon?: string;
5217
+ targetBlank?: boolean;
5218
+ };
5219
+
5206
5220
  export declare function Spinner({ size, className }: SpinnerProps): JSX_2.Element;
5207
5221
 
5208
5222
  declare interface SpinnerProps extends VariantProps<typeof spinnerVariants> {
@@ -6183,6 +6197,11 @@ declare module "@tiptap/core" {
6183
6197
  }
6184
6198
 
6185
6199
 
6200
+ declare namespace Calendar {
6201
+ var displayName: string;
6202
+ }
6203
+
6204
+
6186
6205
  declare module "@tiptap/core" {
6187
6206
  interface Commands<ReturnType> {
6188
6207
  moodTracker: {
@@ -6190,8 +6209,3 @@ declare module "@tiptap/core" {
6190
6209
  };
6191
6210
  }
6192
6211
  }
6193
-
6194
-
6195
- declare namespace Calendar {
6196
- var displayName: string;
6197
- }