@factorialco/f0-react 2.30.1 → 2.30.2
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/ai.d.ts +15 -15
- package/dist/experimental.d.ts +15 -22
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +15 -22
- package/dist/f0.js +2 -2
- package/dist/i18n-provider-defaults.d.ts +15 -15
- package/dist/{useDataCollectionSource-DM1ZthY3.js → useDataCollectionSource-CeczsYtn.js} +2882 -2884
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -4193,13 +4193,8 @@ declare module "gridstack" {
|
|
|
4193
4193
|
}
|
|
4194
4194
|
|
|
4195
4195
|
|
|
4196
|
-
declare
|
|
4197
|
-
|
|
4198
|
-
enhanceHighlight: {
|
|
4199
|
-
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
4200
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
4201
|
-
};
|
|
4202
|
-
}
|
|
4196
|
+
declare namespace Calendar {
|
|
4197
|
+
var displayName: string;
|
|
4203
4198
|
}
|
|
4204
4199
|
|
|
4205
4200
|
|
|
@@ -4215,8 +4210,9 @@ declare module "@tiptap/core" {
|
|
|
4215
4210
|
|
|
4216
4211
|
declare module "@tiptap/core" {
|
|
4217
4212
|
interface Commands<ReturnType> {
|
|
4218
|
-
|
|
4219
|
-
|
|
4213
|
+
enhanceHighlight: {
|
|
4214
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
4215
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
4220
4216
|
};
|
|
4221
4217
|
}
|
|
4222
4218
|
}
|
|
@@ -4224,10 +4220,8 @@ declare module "@tiptap/core" {
|
|
|
4224
4220
|
|
|
4225
4221
|
declare module "@tiptap/core" {
|
|
4226
4222
|
interface Commands<ReturnType> {
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
src: string;
|
|
4230
|
-
}) => ReturnType;
|
|
4223
|
+
moodTracker: {
|
|
4224
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
4231
4225
|
};
|
|
4232
4226
|
}
|
|
4233
4227
|
}
|
|
@@ -4242,8 +4236,14 @@ declare module "@tiptap/core" {
|
|
|
4242
4236
|
}
|
|
4243
4237
|
|
|
4244
4238
|
|
|
4245
|
-
declare
|
|
4246
|
-
|
|
4239
|
+
declare module "@tiptap/core" {
|
|
4240
|
+
interface Commands<ReturnType> {
|
|
4241
|
+
videoEmbed: {
|
|
4242
|
+
setVideoEmbed: (options: {
|
|
4243
|
+
src: string;
|
|
4244
|
+
}) => ReturnType;
|
|
4245
|
+
};
|
|
4246
|
+
}
|
|
4247
4247
|
}
|
|
4248
4248
|
|
|
4249
4249
|
|
package/dist/experimental.d.ts
CHANGED
|
@@ -2652,13 +2652,6 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
2652
2652
|
item: R;
|
|
2653
2653
|
pagination?: ChildrenPaginationInfo;
|
|
2654
2654
|
}) => number | undefined;
|
|
2655
|
-
/**
|
|
2656
|
-
* Item ids that start expanded on first render. Rows matched here have
|
|
2657
|
-
* their children fetched eagerly. Only rows whose `item.id` is in this
|
|
2658
|
-
* list are auto-expanded — nested descendants are not, unless their own id
|
|
2659
|
-
* is also included. Defaults to none.
|
|
2660
|
-
*/
|
|
2661
|
-
defaultExpandedIds?: Array<string | number>;
|
|
2662
2655
|
};
|
|
2663
2656
|
|
|
2664
2657
|
declare type DateCellConfig = {
|
|
@@ -8567,13 +8560,8 @@ declare module "gridstack" {
|
|
|
8567
8560
|
}
|
|
8568
8561
|
|
|
8569
8562
|
|
|
8570
|
-
declare
|
|
8571
|
-
|
|
8572
|
-
enhanceHighlight: {
|
|
8573
|
-
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8574
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
8575
|
-
};
|
|
8576
|
-
}
|
|
8563
|
+
declare namespace Calendar {
|
|
8564
|
+
var displayName: string;
|
|
8577
8565
|
}
|
|
8578
8566
|
|
|
8579
8567
|
|
|
@@ -8589,8 +8577,9 @@ declare module "@tiptap/core" {
|
|
|
8589
8577
|
|
|
8590
8578
|
declare module "@tiptap/core" {
|
|
8591
8579
|
interface Commands<ReturnType> {
|
|
8592
|
-
|
|
8593
|
-
|
|
8580
|
+
enhanceHighlight: {
|
|
8581
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8582
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8594
8583
|
};
|
|
8595
8584
|
}
|
|
8596
8585
|
}
|
|
@@ -8598,10 +8587,8 @@ declare module "@tiptap/core" {
|
|
|
8598
8587
|
|
|
8599
8588
|
declare module "@tiptap/core" {
|
|
8600
8589
|
interface Commands<ReturnType> {
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
src: string;
|
|
8604
|
-
}) => ReturnType;
|
|
8590
|
+
moodTracker: {
|
|
8591
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
8605
8592
|
};
|
|
8606
8593
|
}
|
|
8607
8594
|
}
|
|
@@ -8616,8 +8603,14 @@ declare module "@tiptap/core" {
|
|
|
8616
8603
|
}
|
|
8617
8604
|
|
|
8618
8605
|
|
|
8619
|
-
declare
|
|
8620
|
-
|
|
8606
|
+
declare module "@tiptap/core" {
|
|
8607
|
+
interface Commands<ReturnType> {
|
|
8608
|
+
videoEmbed: {
|
|
8609
|
+
setVideoEmbed: (options: {
|
|
8610
|
+
src: string;
|
|
8611
|
+
}) => ReturnType;
|
|
8612
|
+
};
|
|
8613
|
+
}
|
|
8621
8614
|
}
|
|
8622
8615
|
|
|
8623
8616
|
|
package/dist/experimental.js
CHANGED
|
@@ -2,8 +2,8 @@ import { g as da, B as ua, h as fa, i as ma, j as At, k as De, l as ha, m as p,
|
|
|
2
2
|
import { bQ as Lc, bP as Ec, c0 as _c, bM as Oc, bN as Dc, bF as Tc, bG as zc, c1 as Pc, bH as Bc, bO as Rc, bY as $c, bZ as Wc, bI as Mc, bS as jc, bR as Vc, bJ as Gc, bK as Hc, b_ as Uc, c2 as Kc, b$ as qc, bX as Yc, bU as Zc, bW as Xc, bT as Jc, bL as Qc, bV as ed } from "./F0CanvasPanel-8cFWNhbQ.js";
|
|
3
3
|
import { jsx as e, jsxs as o, Fragment as U } from "react/jsx-runtime";
|
|
4
4
|
import se, { forwardRef as j, useRef as G, useTransition as Hr, useState as _, useLayoutEffect as Fn, useId as ot, useContext as Ke, createContext as Nt, useEffect as $, useCallback as Q, useMemo as q, Fragment as Ur, isValidElement as Kr, cloneElement as An, Children as Ln } from "react";
|
|
5
|
-
import { C as qr, P as Yr, g as En, c as Zr, a as _n, F as ct, f as Xr, M as Jr, b as Qr, R as Dt, d as On, u as el, e as Dn, S as tl, A as nl, B as al, L as rl, h as ll, V as il, i as sl, j as Tt, k as ol, l as cl, O as dl } from "./useDataCollectionSource-
|
|
6
|
-
import { r as nd, s as ad, p as rd, H as ld, t as id, z as sd, a5 as od, G as cd, q as dd, o as ud, Q as fd, ab as md, U as hd, W as pd, v as gd, a7 as bd, a8 as xd, a6 as vd, a9 as wd, N as yd, X as Nd, a2 as Cd, a4 as kd, w as Sd, y as Id, D as Fd, J as Ad, aa as Ld, K as Ed, T as _d, x as Od, E as Dd, m as Td, n as zd, Z as Pd, _ as Bd, a3 as Rd, I as $d, $ as Wd, a0 as Md, Y as jd, a1 as Vd } from "./useDataCollectionSource-
|
|
5
|
+
import { C as qr, P as Yr, g as En, c as Zr, a as _n, F as ct, f as Xr, M as Jr, b as Qr, R as Dt, d as On, u as el, e as Dn, S as tl, A as nl, B as al, L as rl, h as ll, V as il, i as sl, j as Tt, k as ol, l as cl, O as dl } from "./useDataCollectionSource-CeczsYtn.js";
|
|
6
|
+
import { r as nd, s as ad, p as rd, H as ld, t as id, z as sd, a5 as od, G as cd, q as dd, o as ud, Q as fd, ab as md, U as hd, W as pd, v as gd, a7 as bd, a8 as xd, a6 as vd, a9 as wd, N as yd, X as Nd, a2 as Cd, a4 as kd, w as Sd, y as Id, D as Fd, J as Ad, aa as Ld, K as Ed, T as _d, x as Od, E as Dd, m as Td, n as zd, Z as Pd, _ as Bd, a3 as Rd, I as $d, $ as Wd, a0 as Md, Y as jd, a1 as Vd } from "./useDataCollectionSource-CeczsYtn.js";
|
|
7
7
|
const ul = da("Search", [
|
|
8
8
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
9
9
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
package/dist/f0.d.ts
CHANGED
|
@@ -3780,13 +3780,6 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
3780
3780
|
item: R;
|
|
3781
3781
|
pagination?: ChildrenPaginationInfo;
|
|
3782
3782
|
}) => number | undefined;
|
|
3783
|
-
/**
|
|
3784
|
-
* Item ids that start expanded on first render. Rows matched here have
|
|
3785
|
-
* their children fetched eagerly. Only rows whose `item.id` is in this
|
|
3786
|
-
* list are auto-expanded — nested descendants are not, unless their own id
|
|
3787
|
-
* is also included. Defaults to none.
|
|
3788
|
-
*/
|
|
3789
|
-
defaultExpandedIds?: Array<string | number>;
|
|
3790
3783
|
};
|
|
3791
3784
|
|
|
3792
3785
|
/**
|
|
@@ -15161,13 +15154,8 @@ declare module "gridstack" {
|
|
|
15161
15154
|
}
|
|
15162
15155
|
|
|
15163
15156
|
|
|
15164
|
-
declare
|
|
15165
|
-
|
|
15166
|
-
enhanceHighlight: {
|
|
15167
|
-
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
15168
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
15169
|
-
};
|
|
15170
|
-
}
|
|
15157
|
+
declare namespace Calendar {
|
|
15158
|
+
var displayName: string;
|
|
15171
15159
|
}
|
|
15172
15160
|
|
|
15173
15161
|
|
|
@@ -15183,8 +15171,9 @@ declare module "@tiptap/core" {
|
|
|
15183
15171
|
|
|
15184
15172
|
declare module "@tiptap/core" {
|
|
15185
15173
|
interface Commands<ReturnType> {
|
|
15186
|
-
|
|
15187
|
-
|
|
15174
|
+
enhanceHighlight: {
|
|
15175
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
15176
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
15188
15177
|
};
|
|
15189
15178
|
}
|
|
15190
15179
|
}
|
|
@@ -15192,10 +15181,8 @@ declare module "@tiptap/core" {
|
|
|
15192
15181
|
|
|
15193
15182
|
declare module "@tiptap/core" {
|
|
15194
15183
|
interface Commands<ReturnType> {
|
|
15195
|
-
|
|
15196
|
-
|
|
15197
|
-
src: string;
|
|
15198
|
-
}) => ReturnType;
|
|
15184
|
+
moodTracker: {
|
|
15185
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
15199
15186
|
};
|
|
15200
15187
|
}
|
|
15201
15188
|
}
|
|
@@ -15210,8 +15197,14 @@ declare module "@tiptap/core" {
|
|
|
15210
15197
|
}
|
|
15211
15198
|
|
|
15212
15199
|
|
|
15213
|
-
declare
|
|
15214
|
-
|
|
15200
|
+
declare module "@tiptap/core" {
|
|
15201
|
+
interface Commands<ReturnType> {
|
|
15202
|
+
videoEmbed: {
|
|
15203
|
+
setVideoEmbed: (options: {
|
|
15204
|
+
src: string;
|
|
15205
|
+
}) => ReturnType;
|
|
15206
|
+
};
|
|
15207
|
+
}
|
|
15215
15208
|
}
|
|
15216
15209
|
|
|
15217
15210
|
|
package/dist/f0.js
CHANGED
|
@@ -6,8 +6,8 @@ import He, { forwardRef as Jr, useRef as se, useImperativeHandle as IH, Children
|
|
|
6
6
|
import { z as PH, B as OH, U as nT, D as iT, E as $m, G as aT, H as BH, I as Oa, J as nl, K as VH, L as Gw, M as Rr, N as fi, O as FH, P as zH, Q as kk, Z as Ho, R as GH, S as HH, T as WH, V as Rk, W as Xv, X as Hw, Y as Pk, _ as Ok, $ as pn, a0 as UH, a1 as $H, a2 as Bk, a3 as Rg, a4 as YH, a5 as XH, a6 as Vk, a7 as qH, a8 as ZH, a9 as jH, aa as KH, ab as QH, ac as JH, F as eW } from "./useChatHistory-BLSpXWfe.js";
|
|
7
7
|
import { A as Aye, C as Mye, h as Eye, t as Lye, v as Nye, x as Iye, ah as kye, n as Rye, j as Pye, r as Oye, y as Bye, q as Vye, s as Fye, k as zye, e as Gye, g as Hye, l as Wye, i as Uye, a as $ye, p as Yye, ai as Xye, af as qye, ae as Zye, ag as jye, m as Kye, o as Qye, ad as Jye, b as e0e, f as t0e, w as r0e, c as n0e, d as i0e, u as a0e } from "./useChatHistory-BLSpXWfe.js";
|
|
8
8
|
import { createPortal as Fk, unstable_batchedUpdates as qd, flushSync as tW } from "react-dom";
|
|
9
|
-
import { C as rW, o as nW, G as jb, H as zk, ac as Gk, N as Hk, aa as iW, T as aW, K as Wk, Q as Ww, ad as Uw, a5 as oW, ae as sW, af as lW, d as Pg, ag as uW, R as $w, u as Yw, J as Uk, O as Xw, ah as $k, ai as qw, p as cW, a0 as Yk, X as Xk, aj as fW, ak as dW, al as hW, am as vW, an as pW, M as gW } from "./useDataCollectionSource-
|
|
10
|
-
import { r as s0e, s as l0e, t as u0e, z as c0e, ap as f0e, F as d0e, ab as h0e, v as v0e, a7 as p0e, a8 as g0e, a6 as m0e, a9 as y0e, w as b0e, P as x0e, y as _0e, D as w0e, x as S0e, E as C0e, m as T0e, n as D0e, ao as A0e, a3 as M0e, I as E0e, aq as L0e, ar as N0e, as as I0e, e as k0e } from "./useDataCollectionSource-
|
|
9
|
+
import { C as rW, o as nW, G as jb, H as zk, ac as Gk, N as Hk, aa as iW, T as aW, K as Wk, Q as Ww, ad as Uw, a5 as oW, ae as sW, af as lW, d as Pg, ag as uW, R as $w, u as Yw, J as Uk, O as Xw, ah as $k, ai as qw, p as cW, a0 as Yk, X as Xk, aj as fW, ak as dW, al as hW, am as vW, an as pW, M as gW } from "./useDataCollectionSource-CeczsYtn.js";
|
|
10
|
+
import { r as s0e, s as l0e, t as u0e, z as c0e, ap as f0e, F as d0e, ab as h0e, v as v0e, a7 as p0e, a8 as g0e, a6 as m0e, a9 as y0e, w as b0e, P as x0e, y as _0e, D as w0e, x as S0e, E as C0e, m as T0e, n as D0e, ao as A0e, a3 as M0e, I as E0e, aq as L0e, ar as N0e, as as I0e, e as k0e } from "./useDataCollectionSource-CeczsYtn.js";
|
|
11
11
|
import { utils as fu, write as qk } from "./xlsx-Bedf3nwD.js";
|
|
12
12
|
import { defaultTranslations as P0e } from "./i18n-provider-defaults.js";
|
|
13
13
|
import './f0.css';const mW = {
|
|
@@ -842,13 +842,8 @@ declare module "gridstack" {
|
|
|
842
842
|
}
|
|
843
843
|
|
|
844
844
|
|
|
845
|
-
declare
|
|
846
|
-
|
|
847
|
-
enhanceHighlight: {
|
|
848
|
-
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
849
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
850
|
-
};
|
|
851
|
-
}
|
|
845
|
+
declare namespace Calendar {
|
|
846
|
+
var displayName: string;
|
|
852
847
|
}
|
|
853
848
|
|
|
854
849
|
|
|
@@ -864,8 +859,9 @@ declare module "@tiptap/core" {
|
|
|
864
859
|
|
|
865
860
|
declare module "@tiptap/core" {
|
|
866
861
|
interface Commands<ReturnType> {
|
|
867
|
-
|
|
868
|
-
|
|
862
|
+
enhanceHighlight: {
|
|
863
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
864
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
869
865
|
};
|
|
870
866
|
}
|
|
871
867
|
}
|
|
@@ -873,10 +869,8 @@ declare module "@tiptap/core" {
|
|
|
873
869
|
|
|
874
870
|
declare module "@tiptap/core" {
|
|
875
871
|
interface Commands<ReturnType> {
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
src: string;
|
|
879
|
-
}) => ReturnType;
|
|
872
|
+
moodTracker: {
|
|
873
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
880
874
|
};
|
|
881
875
|
}
|
|
882
876
|
}
|
|
@@ -891,8 +885,14 @@ declare module "@tiptap/core" {
|
|
|
891
885
|
}
|
|
892
886
|
|
|
893
887
|
|
|
894
|
-
declare
|
|
895
|
-
|
|
888
|
+
declare module "@tiptap/core" {
|
|
889
|
+
interface Commands<ReturnType> {
|
|
890
|
+
videoEmbed: {
|
|
891
|
+
setVideoEmbed: (options: {
|
|
892
|
+
src: string;
|
|
893
|
+
}) => ReturnType;
|
|
894
|
+
};
|
|
895
|
+
}
|
|
896
896
|
}
|
|
897
897
|
|
|
898
898
|
|