@factorialco/f0-react 2.44.0 → 2.45.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/{F0CanvasPanel-Czxg0RlQ.js → F0CanvasPanel-DMLQMGBW.js} +20614 -20357
- package/dist/ai.d.ts +5 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +21 -5
- package/dist/experimental.js +296 -296
- package/dist/f0.d.ts +144 -5
- package/dist/f0.js +12738 -12176
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-4yObgxX5.js → useChatHistory-DvbntgsJ.js} +182 -182
- package/dist/{useDataCollectionSource-Bxbwl5Iu.js → useDataCollectionSource-iZJIN18U.js} +7066 -7315
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -4263,11 +4263,6 @@ declare module "gridstack" {
|
|
|
4263
4263
|
}
|
|
4264
4264
|
|
|
4265
4265
|
|
|
4266
|
-
declare namespace Calendar {
|
|
4267
|
-
var displayName: string;
|
|
4268
|
-
}
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
4266
|
declare module "@tiptap/core" {
|
|
4272
4267
|
interface Commands<ReturnType> {
|
|
4273
4268
|
aiBlock: {
|
|
@@ -4317,6 +4312,11 @@ declare module "@tiptap/core" {
|
|
|
4317
4312
|
}
|
|
4318
4313
|
|
|
4319
4314
|
|
|
4315
|
+
declare namespace Calendar {
|
|
4316
|
+
var displayName: string;
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
|
|
4320
4320
|
declare namespace F0GraphNodeWrapperInner {
|
|
4321
4321
|
var displayName: string;
|
|
4322
4322
|
}
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { D as e, F as r, a as t, e as o, f as i, c as n, d as F, I as C, P as A, b as l, u as d } from "./F0CanvasPanel-
|
|
1
|
+
import { D as e, F as r, a as t, e as o, f as i, c as n, d as F, I as C, P as A, b as l, u as d } from "./F0CanvasPanel-DMLQMGBW.js";
|
|
2
2
|
import { defaultTranslations as m } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as c, C as I, h as P, t as v, v as f, x as p, n as T, j as g, r as y, y as S, q as x, s as H, k as V, e as b, g as k, l as w, F as M, i as O, a as D, p as j, m as q, o as z, b as B, f as E, w as L, c as R, d as G, u as J } from "./useChatHistory-
|
|
3
|
+
import { A as c, C as I, h as P, t as v, v as f, x as p, n as T, j as g, r as y, y as S, q as x, s as H, k as V, e as b, g as k, l as w, F as M, i as O, a as D, p as j, m as q, o as z, b as B, f as E, w as L, c as R, d as G, u as J } from "./useChatHistory-DvbntgsJ.js";
|
|
4
4
|
export {
|
|
5
5
|
c as AiChatTranslationsProvider,
|
|
6
6
|
I as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -1495,6 +1495,22 @@ declare type CardAvatarVariant = AvatarVariant | {
|
|
|
1495
1495
|
} | {
|
|
1496
1496
|
type: "icon";
|
|
1497
1497
|
icon: IconType;
|
|
1498
|
+
} | {
|
|
1499
|
+
type: "module";
|
|
1500
|
+
module: ModuleId;
|
|
1501
|
+
} | {
|
|
1502
|
+
type: "alert";
|
|
1503
|
+
variant: AlertAvatarProps["type"];
|
|
1504
|
+
} | {
|
|
1505
|
+
type: "date";
|
|
1506
|
+
date: Date;
|
|
1507
|
+
} | {
|
|
1508
|
+
type: "pulse";
|
|
1509
|
+
firstName: string;
|
|
1510
|
+
lastName: string;
|
|
1511
|
+
src?: string;
|
|
1512
|
+
pulse?: Pulse;
|
|
1513
|
+
onPulseClick: () => void;
|
|
1498
1514
|
};
|
|
1499
1515
|
|
|
1500
1516
|
/**
|
|
@@ -8756,11 +8772,6 @@ declare module "gridstack" {
|
|
|
8756
8772
|
}
|
|
8757
8773
|
|
|
8758
8774
|
|
|
8759
|
-
declare namespace Calendar {
|
|
8760
|
-
var displayName: string;
|
|
8761
|
-
}
|
|
8762
|
-
|
|
8763
|
-
|
|
8764
8775
|
declare module "@tiptap/core" {
|
|
8765
8776
|
interface Commands<ReturnType> {
|
|
8766
8777
|
aiBlock: {
|
|
@@ -8810,6 +8821,11 @@ declare module "@tiptap/core" {
|
|
|
8810
8821
|
}
|
|
8811
8822
|
|
|
8812
8823
|
|
|
8824
|
+
declare namespace Calendar {
|
|
8825
|
+
var displayName: string;
|
|
8826
|
+
}
|
|
8827
|
+
|
|
8828
|
+
|
|
8813
8829
|
declare namespace F0GraphNodeWrapperInner {
|
|
8814
8830
|
var displayName: string;
|
|
8815
8831
|
}
|