@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
|
@@ -164,6 +164,14 @@ export declare const defaultTranslations: {
|
|
|
164
164
|
readonly all: "All selected";
|
|
165
165
|
};
|
|
166
166
|
};
|
|
167
|
+
readonly syncStatus: {
|
|
168
|
+
readonly synced: "Sync completed successfully.";
|
|
169
|
+
readonly syncing: "Sync in progress.";
|
|
170
|
+
readonly pending: "Not yet started.";
|
|
171
|
+
readonly partiallySynced: "All aggregated data was synced but at least 1 failed.";
|
|
172
|
+
readonly outdated: "Data might need to be synced again.";
|
|
173
|
+
readonly failed: "Sync failed.";
|
|
174
|
+
};
|
|
167
175
|
readonly filters: {
|
|
168
176
|
readonly searchPlaceholder: "Search filters...";
|
|
169
177
|
readonly inFilter: {
|
|
@@ -479,8 +487,8 @@ declare module "@tiptap/core" {
|
|
|
479
487
|
|
|
480
488
|
declare module "@tiptap/core" {
|
|
481
489
|
interface Commands<ReturnType> {
|
|
482
|
-
|
|
483
|
-
|
|
490
|
+
liveCompanion: {
|
|
491
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
484
492
|
};
|
|
485
493
|
}
|
|
486
494
|
}
|
|
@@ -488,8 +496,8 @@ declare module "@tiptap/core" {
|
|
|
488
496
|
|
|
489
497
|
declare module "@tiptap/core" {
|
|
490
498
|
interface Commands<ReturnType> {
|
|
491
|
-
|
|
492
|
-
|
|
499
|
+
transcript: {
|
|
500
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
493
501
|
};
|
|
494
502
|
}
|
|
495
503
|
}
|
|
@@ -164,6 +164,14 @@ const e = {
|
|
|
164
164
|
all: "All selected"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
+
syncStatus: {
|
|
168
|
+
synced: "Sync completed successfully.",
|
|
169
|
+
syncing: "Sync in progress.",
|
|
170
|
+
pending: "Not yet started.",
|
|
171
|
+
partiallySynced: "All aggregated data was synced but at least 1 failed.",
|
|
172
|
+
outdated: "Data might need to be synced again.",
|
|
173
|
+
failed: "Sync failed."
|
|
174
|
+
},
|
|
167
175
|
filters: {
|
|
168
176
|
searchPlaceholder: "Search filters...",
|
|
169
177
|
inFilter: {
|