@factorialco/f0-react 1.201.5 → 1.201.6

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.
@@ -1670,6 +1670,10 @@ declare const defaultTranslations: {
1670
1670
  readonly welcome: "Ask or create with One";
1671
1671
  readonly initialMessage: "How can I help you today?";
1672
1672
  };
1673
+ readonly select: {
1674
+ readonly noResults: "No results found";
1675
+ readonly loadingMore: "Loading...";
1676
+ };
1673
1677
  };
1674
1678
 
1675
1679
  export declare const DetailsItem: ForwardRefExoticComponent<DetailsItemType & RefAttributes<HTMLDivElement>>;
@@ -2512,6 +2516,16 @@ declare type InputFieldProps<T> = {
2512
2516
  appendTag?: string;
2513
2517
  lengthProvider?: (value: T | undefined) => number;
2514
2518
  loading?: boolean;
2519
+ loadingIndicator?: {
2520
+ /**
2521
+ * If true, the loading spinner will be displayed over the content without affecting the layout
2522
+ */
2523
+ asOverlay?: boolean;
2524
+ /**
2525
+ * The offset of the loading spinner from the content
2526
+ */
2527
+ offset?: number;
2528
+ };
2515
2529
  };
2516
2530
 
2517
2531
  declare type InputFieldSize = (typeof INPUTFIELD_SIZES)[number];