@factorialco/f0-react 2.24.0 → 2.26.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-DAJcyyFM.js → F0CanvasPanel-EHIkRGh1.js} +7387 -7389
- package/dist/ai.d.ts +2 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +9 -0
- package/dist/experimental.js +1366 -1424
- package/dist/f0.d.ts +61 -0
- package/dist/f0.js +10313 -10172
- package/dist/i18n-provider-defaults.d.ts +2 -0
- package/dist/i18n-provider-defaults.js +2 -0
- package/dist/{useChatHistory-DsrI2Vz9.js → useChatHistory-BD1x2gsG.js} +17 -13
- package/dist/{useDataCollectionSource-B5-atCQw.js → useDataCollectionSource-DxlMzt-m.js} +4989 -4928
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1514,7 +1514,9 @@ export declare const defaultTranslations: {
|
|
|
1514
1514
|
readonly paste: "Paste";
|
|
1515
1515
|
readonly close: "Close";
|
|
1516
1516
|
readonly collapse: "Collapse";
|
|
1517
|
+
readonly collapseItem: "Collapse {{title}}";
|
|
1517
1518
|
readonly expand: "Expand";
|
|
1519
|
+
readonly expandItem: "Expand {{title}}";
|
|
1518
1520
|
readonly showAll: "Show all";
|
|
1519
1521
|
readonly showLess: "Show less";
|
|
1520
1522
|
readonly seeMore: "See more";
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { D as e, F as r, a as t, e as i, f as o, c as n, d as F, I as C, P as A, b as l, u } from "./F0CanvasPanel-
|
|
1
|
+
import { D as e, F as r, a as t, e as i, f as o, c as n, d as F, I as C, P as A, b as l, u } from "./F0CanvasPanel-EHIkRGh1.js";
|
|
2
2
|
import { defaultTranslations as m } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-
|
|
3
|
+
import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-BD1x2gsG.js";
|
|
4
4
|
export {
|
|
5
5
|
c as AiChatTranslationsProvider,
|
|
6
6
|
I as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -2645,6 +2645,13 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
2645
2645
|
item: R;
|
|
2646
2646
|
pagination?: ChildrenPaginationInfo;
|
|
2647
2647
|
}) => number | undefined;
|
|
2648
|
+
/**
|
|
2649
|
+
* Item ids that start expanded on first render. Rows matched here have
|
|
2650
|
+
* their children fetched eagerly. Only rows whose `item.id` is in this
|
|
2651
|
+
* list are auto-expanded — nested descendants are not, unless their own id
|
|
2652
|
+
* is also included. Defaults to none.
|
|
2653
|
+
*/
|
|
2654
|
+
defaultExpandedIds?: Array<string | number>;
|
|
2648
2655
|
};
|
|
2649
2656
|
|
|
2650
2657
|
declare type DateCellConfig = {
|
|
@@ -2926,7 +2933,9 @@ declare const defaultTranslations: {
|
|
|
2926
2933
|
readonly paste: "Paste";
|
|
2927
2934
|
readonly close: "Close";
|
|
2928
2935
|
readonly collapse: "Collapse";
|
|
2936
|
+
readonly collapseItem: "Collapse {{title}}";
|
|
2929
2937
|
readonly expand: "Expand";
|
|
2938
|
+
readonly expandItem: "Expand {{title}}";
|
|
2930
2939
|
readonly showAll: "Show all";
|
|
2931
2940
|
readonly showLess: "Show less";
|
|
2932
2941
|
readonly seeMore: "See more";
|