@factorialco/f0-react 1.345.0 → 1.347.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/{DataCollectionStorageProvider-COdEevtI.js → DataCollectionStorageProvider-CamUWgw8.js} +10 -7
- package/dist/{F0AiChat-CKUw1Ydt.js → F0AiChat-Bdcyd2yl.js} +223 -221
- package/dist/{F0HILActionConfirmation-DWHKToXy.js → F0HILActionConfirmation-VQ_C8zDh.js} +5 -5
- package/dist/ai.d.ts +528 -8
- package/dist/ai.js +37 -33
- package/dist/experimental.d.ts +6 -5
- package/dist/experimental.js +2595 -2585
- package/dist/f0.d.ts +6 -5
- package/dist/f0.js +5 -5
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -2824,6 +2824,7 @@ export declare type EntitySelectSubEntity = {
|
|
|
2824
2824
|
subName: string;
|
|
2825
2825
|
subAvatar?: string;
|
|
2826
2826
|
subSearchKeys?: string[];
|
|
2827
|
+
subDeactivated?: boolean;
|
|
2827
2828
|
};
|
|
2828
2829
|
|
|
2829
2830
|
declare type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? [...Acc, N][number] : Enumerate<N, [...Acc, Acc["length"]]>;
|
|
@@ -6480,11 +6481,6 @@ declare module "gridstack" {
|
|
|
6480
6481
|
}
|
|
6481
6482
|
|
|
6482
6483
|
|
|
6483
|
-
declare namespace Calendar {
|
|
6484
|
-
var displayName: string;
|
|
6485
|
-
}
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
6484
|
declare module "@tiptap/core" {
|
|
6489
6485
|
interface Commands<ReturnType> {
|
|
6490
6486
|
aiBlock: {
|
|
@@ -6521,3 +6517,8 @@ declare module "@tiptap/core" {
|
|
|
6521
6517
|
};
|
|
6522
6518
|
}
|
|
6523
6519
|
}
|
|
6520
|
+
|
|
6521
|
+
|
|
6522
|
+
declare namespace Calendar {
|
|
6523
|
+
var displayName: string;
|
|
6524
|
+
}
|