@factorialco/f0-react 1.311.3 → 1.312.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.
@@ -79,6 +79,7 @@ import { SearchFilterOptions } from './SearchFilter/SearchFilter';
79
79
  import { StatusCellValue } from './types/status';
80
80
  import { StatusCellValue as StatusCellValue_2 } from '../../value-display/types/status';
81
81
  import { SVGProps } from 'react';
82
+ import { SyncStatusCellValue } from './types/syncStatus';
82
83
  import { TagCellValue } from './types/tag';
83
84
  import { TagCellValue as TagCellValue_2 } from '../../value-display/types/tag';
84
85
  import { TagListCellValue } from './types/tagList';
@@ -2277,6 +2278,14 @@ declare const defaultTranslations: {
2277
2278
  readonly all: "All selected";
2278
2279
  };
2279
2280
  };
2281
+ readonly syncStatus: {
2282
+ readonly synced: "Sync completed successfully.";
2283
+ readonly syncing: "Sync in progress.";
2284
+ readonly pending: "Not yet started.";
2285
+ readonly partiallySynced: "All aggregated data was synced but at least 1 failed.";
2286
+ readonly outdated: "Data might need to be synced again.";
2287
+ readonly failed: "Sync failed.";
2288
+ };
2280
2289
  readonly filters: {
2281
2290
  readonly searchPlaceholder: "Search filters...";
2282
2291
  readonly inFilter: {
@@ -6177,6 +6186,7 @@ declare const valueDisplayRenderers: {
6177
6186
  readonly file: (args: FileCellValue) => JSX_2.Element;
6178
6187
  readonly folder: (args: FolderCellValue) => JSX_2.Element;
6179
6188
  readonly country: (args: CountryCellValue, context: ValueDisplayRendererContext) => JSX_2.Element;
6189
+ readonly syncStatus: (args: SyncStatusCellValue, context: ValueDisplayRendererContext) => JSX_2.Element;
6180
6190
  };
6181
6191
 
6182
6192
  declare type ValueDisplayVisualizationType = "table" | "card" | "list" | (string & {});