@factorialco/f0-react 1.311.2 → 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.
- package/dist/experimental.d.ts +14 -4
- package/dist/experimental.js +4825 -4863
- package/dist/f0.d.ts +14 -4
- package/dist/f0.js +2 -2
- package/dist/{hooks-B57P57y7.js → hooks-BkHUCeTO.js} +18825 -18718
- package/dist/i18n-provider-defaults.d.ts +12 -4
- package/dist/i18n-provider-defaults.js +8 -0
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -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 & {});
|
|
@@ -6461,8 +6471,8 @@ declare module "@tiptap/core" {
|
|
|
6461
6471
|
|
|
6462
6472
|
declare module "@tiptap/core" {
|
|
6463
6473
|
interface Commands<ReturnType> {
|
|
6464
|
-
|
|
6465
|
-
|
|
6474
|
+
liveCompanion: {
|
|
6475
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6466
6476
|
};
|
|
6467
6477
|
}
|
|
6468
6478
|
}
|
|
@@ -6470,8 +6480,8 @@ declare module "@tiptap/core" {
|
|
|
6470
6480
|
|
|
6471
6481
|
declare module "@tiptap/core" {
|
|
6472
6482
|
interface Commands<ReturnType> {
|
|
6473
|
-
|
|
6474
|
-
|
|
6483
|
+
transcript: {
|
|
6484
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6475
6485
|
};
|
|
6476
6486
|
}
|
|
6477
6487
|
}
|