@factorialco/f0-react 2.25.0 → 2.26.1
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 +7 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +12 -6
- package/dist/experimental.js +1366 -1424
- package/dist/f0.d.ts +64 -6
- package/dist/f0.js +10313 -10172
- package/dist/i18n-provider-defaults.d.ts +7 -5
- package/dist/i18n-provider-defaults.js +2 -0
- package/dist/{useChatHistory-D1pjDBvO.js → useChatHistory-BD1x2gsG.js} +1 -1
- package/dist/{useDataCollectionSource-CjRrXJC3.js → useDataCollectionSource-q6ZqmOeN.js} +3869 -3808
- 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";
|
|
@@ -4171,11 +4173,6 @@ declare module "gridstack" {
|
|
|
4171
4173
|
}
|
|
4172
4174
|
|
|
4173
4175
|
|
|
4174
|
-
declare namespace Calendar {
|
|
4175
|
-
var displayName: string;
|
|
4176
|
-
}
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
4176
|
declare module "@tiptap/core" {
|
|
4180
4177
|
interface Commands<ReturnType> {
|
|
4181
4178
|
aiBlock: {
|
|
@@ -4225,6 +4222,11 @@ declare module "@tiptap/core" {
|
|
|
4225
4222
|
}
|
|
4226
4223
|
|
|
4227
4224
|
|
|
4225
|
+
declare namespace Calendar {
|
|
4226
|
+
var displayName: string;
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
|
|
4228
4230
|
declare namespace F0GraphNodeWrapperInner {
|
|
4229
4231
|
var displayName: string;
|
|
4230
4232
|
}
|
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
|
@@ -2933,7 +2933,9 @@ declare const defaultTranslations: {
|
|
|
2933
2933
|
readonly paste: "Paste";
|
|
2934
2934
|
readonly close: "Close";
|
|
2935
2935
|
readonly collapse: "Collapse";
|
|
2936
|
+
readonly collapseItem: "Collapse {{title}}";
|
|
2936
2937
|
readonly expand: "Expand";
|
|
2938
|
+
readonly expandItem: "Expand {{title}}";
|
|
2937
2939
|
readonly showAll: "Show all";
|
|
2938
2940
|
readonly showLess: "Show less";
|
|
2939
2941
|
readonly seeMore: "See more";
|
|
@@ -3799,7 +3801,11 @@ declare type EditableTableColumnDefinition<R extends RecordType, Sortings extend
|
|
|
3799
3801
|
}) => void;
|
|
3800
3802
|
/**
|
|
3801
3803
|
* Returns a hint to display as an icon with tooltip inside the cell.
|
|
3802
|
-
* Use to warn the user when a value diverges from its formula-inferred value
|
|
3804
|
+
* Use to warn the user when a value diverges from its formula-inferred value,
|
|
3805
|
+
* or to provide extra context for non-editable / disabled cells (e.g. why a
|
|
3806
|
+
* value was inferred, who a row is backfilling, why editing is locked).
|
|
3807
|
+
*
|
|
3808
|
+
* Supported by all `editType` values, including `display-only` and `disabled`.
|
|
3803
3809
|
*
|
|
3804
3810
|
* Return `undefined` to hide the hint.
|
|
3805
3811
|
*
|
|
@@ -8513,11 +8519,6 @@ declare module "gridstack" {
|
|
|
8513
8519
|
}
|
|
8514
8520
|
|
|
8515
8521
|
|
|
8516
|
-
declare namespace Calendar {
|
|
8517
|
-
var displayName: string;
|
|
8518
|
-
}
|
|
8519
|
-
|
|
8520
|
-
|
|
8521
8522
|
declare module "@tiptap/core" {
|
|
8522
8523
|
interface Commands<ReturnType> {
|
|
8523
8524
|
aiBlock: {
|
|
@@ -8567,6 +8568,11 @@ declare module "@tiptap/core" {
|
|
|
8567
8568
|
}
|
|
8568
8569
|
|
|
8569
8570
|
|
|
8571
|
+
declare namespace Calendar {
|
|
8572
|
+
var displayName: string;
|
|
8573
|
+
}
|
|
8574
|
+
|
|
8575
|
+
|
|
8570
8576
|
declare namespace F0GraphNodeWrapperInner {
|
|
8571
8577
|
var displayName: string;
|
|
8572
8578
|
}
|