@factorialco/f0-react 1.378.0 → 1.379.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-C107DYaA.js → DataCollectionStorageProvider-CJOXFIRS.js} +12823 -12630
- package/dist/ai.d.ts +6 -6
- package/dist/experimental.d.ts +10 -6
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +10 -6
- package/dist/f0.js +2 -2
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1240,10 +1240,8 @@ declare module "@tiptap/core" {
|
|
|
1240
1240
|
|
|
1241
1241
|
declare module "@tiptap/core" {
|
|
1242
1242
|
interface Commands<ReturnType> {
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
src: string;
|
|
1246
|
-
}) => ReturnType;
|
|
1243
|
+
transcript: {
|
|
1244
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1247
1245
|
};
|
|
1248
1246
|
}
|
|
1249
1247
|
}
|
|
@@ -1251,8 +1249,10 @@ declare module "@tiptap/core" {
|
|
|
1251
1249
|
|
|
1252
1250
|
declare module "@tiptap/core" {
|
|
1253
1251
|
interface Commands<ReturnType> {
|
|
1254
|
-
|
|
1255
|
-
|
|
1252
|
+
videoEmbed: {
|
|
1253
|
+
setVideoEmbed: (options: {
|
|
1254
|
+
src: string;
|
|
1255
|
+
}) => ReturnType;
|
|
1256
1256
|
};
|
|
1257
1257
|
}
|
|
1258
1258
|
}
|
package/dist/experimental.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { AvatarListCellValue } from './types/avatarList';
|
|
|
12
12
|
import { AvatarListCellValue as AvatarListCellValue_2 } from '../../../ui/value-display/types/avatarList';
|
|
13
13
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
14
14
|
import { BarChartProps } from '../../../components/Charts/BarChart';
|
|
15
|
+
import { BarSeriesCellValue } from './types/barSeries';
|
|
15
16
|
import { baseColors } from '@factorialco/f0-core';
|
|
16
17
|
import { ButtonHTMLAttributes } from 'react';
|
|
17
18
|
import { ClassValue } from 'cva';
|
|
@@ -38,6 +39,7 @@ import { FolderCellValue } from './types/folder';
|
|
|
38
39
|
import { FolderCellValue as FolderCellValue_2 } from '../../../ui/value-display/types/folder';
|
|
39
40
|
import { ForwardedRef } from 'react';
|
|
40
41
|
import { ForwardRefExoticComponent } from 'react';
|
|
42
|
+
import { HourDistributionCellValue } from './types/hourDistribution';
|
|
41
43
|
import { HTMLAttributeAnchorTarget } from 'react';
|
|
42
44
|
import { HTMLAttributes } from 'react';
|
|
43
45
|
import { HTMLInputTypeAttribute } from 'react';
|
|
@@ -6382,6 +6384,8 @@ declare const valueDisplayRenderers: {
|
|
|
6382
6384
|
readonly person: (args: PersonCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
6383
6385
|
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element | null;
|
|
6384
6386
|
readonly progressBar: (args: ProgressBarCellValue, _meta: ValueDisplayRendererContext) => JSX_2.Element | null;
|
|
6387
|
+
readonly barSeries: (args: BarSeriesCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
6388
|
+
readonly hourDistribution: (args: HourDistributionCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
6385
6389
|
readonly company: (args: CompanyCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
6386
6390
|
readonly team: (args: TeamCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
6387
6391
|
readonly tag: (args: TagCellValue) => JSX_2.Element;
|
|
@@ -6745,10 +6749,8 @@ declare module "@tiptap/core" {
|
|
|
6745
6749
|
|
|
6746
6750
|
declare module "@tiptap/core" {
|
|
6747
6751
|
interface Commands<ReturnType> {
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
src: string;
|
|
6751
|
-
}) => ReturnType;
|
|
6752
|
+
transcript: {
|
|
6753
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
6752
6754
|
};
|
|
6753
6755
|
}
|
|
6754
6756
|
}
|
|
@@ -6756,8 +6758,10 @@ declare module "@tiptap/core" {
|
|
|
6756
6758
|
|
|
6757
6759
|
declare module "@tiptap/core" {
|
|
6758
6760
|
interface Commands<ReturnType> {
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
+
videoEmbed: {
|
|
6762
|
+
setVideoEmbed: (options: {
|
|
6763
|
+
src: string;
|
|
6764
|
+
}) => ReturnType;
|
|
6761
6765
|
};
|
|
6762
6766
|
}
|
|
6763
6767
|
}
|
package/dist/experimental.js
CHANGED
|
@@ -3,8 +3,8 @@ import { eL as zL, eK as $L, eJ as jL, eQ as BL, eR as HL, eN as VL, eM as WL, e
|
|
|
3
3
|
import { jsx as l, jsxs as g, Fragment as Z } from "react/jsx-runtime";
|
|
4
4
|
import * as Me from "react";
|
|
5
5
|
import Q, { createContext as zt, forwardRef as J, useRef as W, useEffect as V, useContext as $t, PureComponent as a0, useTransition as c0, useState as R, useLayoutEffect as Jn, useCallback as ne, useMemo as P, useId as Dl, useImperativeHandle as Lu, memo as ao, Fragment as jn, isValidElement as Ou, cloneElement as _l, createElement as Ra, Children as Ru } from "react";
|
|
6
|
-
import { f as Ln, aG as hr, j as Kr, aH as d0, b as Ho, aI as u0, A as f0, d as Jr, i as h0, m as m0, G as p0, g as Fa, aJ as g0, l as Ma, aK as b0, p as v0, aL as Fu, aM as Mu, aN as y0, C as x0, az as w0, af as Bn, D as _e, aO as st, aP as It, aQ as qe, aR as C0, aS as di, aT as at, aU as Pu, aV as Ze, aW as Ll, aX as rt, aY as Pa, aZ as k0, a_ as zu, a$ as Ve, b0 as tt, b1 as mr, b2 as Di, b3 as $u, b4 as N0, b5 as yn, b6 as S0, b7 as I0, b8 as A0, b9 as Rr, ba as Fr, bb as Ol, bc as E0, bd as ju, be as Bu, bf as Hu, bg as T0, bh as Vu, bi as Wu, bj as Uu, bk as Gu, bl as qu, bm as Ku, bn as Cs, bo as D0, bp as za, bq as _0, br as L0, bs as O0, x as R0, y as F0, F as M0, M as $a, N as ja, O as P0, P as z0, t as $0, a4 as j0, a5 as B0, bt as H0, bu as V0, a7 as W0, bv as Ju, bw as U0, bx as G0, by as q0, an as co, bz as Rl, bA as Yu, am as ks, bB as K0, al as Qu, a2 as Mr, ah as J0, bC as Y0, bD as Q0, bE as X0, aq as Fl, bF as Z0, aD as ev, bG as Ns, bH as tv, bI as _i, bJ as nv, aE as rv, bK as iv, aC as Xu, aB as ov, aA as sv, bL as lv, bM as av, bN as cv, bO as dv, bP as uv, bQ as fv, bR as hv, bS as mv, bT as pv, bU as gv, bV as bv, bW as vv, bX as yv, bY as xv, bZ as wv, aF as Zu, at as ef, b_ as Cv, R as kv, T as Nv, V as Sv, W as Iv, Z as Av, U as Ev, b$ as Ba, c0 as Tv, c1 as Dv, n as _v } from "./DataCollectionStorageProvider-
|
|
7
|
-
import { ai as JL, a8 as YL, a3 as QL, aa as XL, c5 as ZL, c4 as eO, c2 as tO, c3 as nO, a6 as rO, a9 as iO, ar as oO, as as sO } from "./DataCollectionStorageProvider-
|
|
6
|
+
import { f as Ln, aG as hr, j as Kr, aH as d0, b as Ho, aI as u0, A as f0, d as Jr, i as h0, m as m0, G as p0, g as Fa, aJ as g0, l as Ma, aK as b0, p as v0, aL as Fu, aM as Mu, aN as y0, C as x0, az as w0, af as Bn, D as _e, aO as st, aP as It, aQ as qe, aR as C0, aS as di, aT as at, aU as Pu, aV as Ze, aW as Ll, aX as rt, aY as Pa, aZ as k0, a_ as zu, a$ as Ve, b0 as tt, b1 as mr, b2 as Di, b3 as $u, b4 as N0, b5 as yn, b6 as S0, b7 as I0, b8 as A0, b9 as Rr, ba as Fr, bb as Ol, bc as E0, bd as ju, be as Bu, bf as Hu, bg as T0, bh as Vu, bi as Wu, bj as Uu, bk as Gu, bl as qu, bm as Ku, bn as Cs, bo as D0, bp as za, bq as _0, br as L0, bs as O0, x as R0, y as F0, F as M0, M as $a, N as ja, O as P0, P as z0, t as $0, a4 as j0, a5 as B0, bt as H0, bu as V0, a7 as W0, bv as Ju, bw as U0, bx as G0, by as q0, an as co, bz as Rl, bA as Yu, am as ks, bB as K0, al as Qu, a2 as Mr, ah as J0, bC as Y0, bD as Q0, bE as X0, aq as Fl, bF as Z0, aD as ev, bG as Ns, bH as tv, bI as _i, bJ as nv, aE as rv, bK as iv, aC as Xu, aB as ov, aA as sv, bL as lv, bM as av, bN as cv, bO as dv, bP as uv, bQ as fv, bR as hv, bS as mv, bT as pv, bU as gv, bV as bv, bW as vv, bX as yv, bY as xv, bZ as wv, aF as Zu, at as ef, b_ as Cv, R as kv, T as Nv, V as Sv, W as Iv, Z as Av, U as Ev, b$ as Ba, c0 as Tv, c1 as Dv, n as _v } from "./DataCollectionStorageProvider-CJOXFIRS.js";
|
|
7
|
+
import { ai as JL, a8 as YL, a3 as QL, aa as XL, c5 as ZL, c4 as eO, c2 as tO, c3 as nO, a6 as rO, a9 as iO, ar as oO, as as sO } from "./DataCollectionStorageProvider-CJOXFIRS.js";
|
|
8
8
|
import './experimental.css';function tf(t, e) {
|
|
9
9
|
const n = Vd(e()), r = () => n.set(e());
|
|
10
10
|
return r(), Hp(() => {
|
package/dist/f0.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { AvatarListCellValue as AvatarListCellValue_2 } from './types/avatarList
|
|
|
16
16
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
17
17
|
import { AvatarProps } from './F0Avatar';
|
|
18
18
|
import { AvatarProps as AvatarProps_2 } from '@radix-ui/react-avatar';
|
|
19
|
+
import { BarSeriesCellValue } from './types/barSeries';
|
|
19
20
|
import { BaseAvatarProps as BaseAvatarProps_2 } from '../internal/BaseAvatar';
|
|
20
21
|
import { baseColors } from '@factorialco/f0-core';
|
|
21
22
|
import { BigNumberProps as BigNumberProps_2 } from './types';
|
|
@@ -71,6 +72,7 @@ import { GroupGridProps as GroupGridProps_2 } from './groups/GroupGrid';
|
|
|
71
72
|
import { GroupGridWidget as GroupGridWidget_2 } from './groups/GroupGrid';
|
|
72
73
|
import { GroupLinearProps } from './groups/GroupLinear';
|
|
73
74
|
import { GroupMasonryProps } from './groups/GroupMasonry';
|
|
75
|
+
import { HourDistributionCellValue } from './types/hourDistribution';
|
|
74
76
|
import { HTMLAttributeAnchorTarget } from 'react';
|
|
75
77
|
import { HTMLAttributes } from 'react';
|
|
76
78
|
import { IconCellValue } from './types/icon';
|
|
@@ -7771,6 +7773,8 @@ declare const valueDisplayRenderers: {
|
|
|
7771
7773
|
readonly person: (args: PersonCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
7772
7774
|
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
7773
7775
|
readonly progressBar: (args: ProgressBarCellValue_2, _meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
7776
|
+
readonly barSeries: (args: BarSeriesCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
7777
|
+
readonly hourDistribution: (args: HourDistributionCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
7774
7778
|
readonly company: (args: CompanyCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
7775
7779
|
readonly team: (args: TeamCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
7776
7780
|
readonly tag: (args: TagCellValue_2) => JSX_2.Element;
|
|
@@ -7961,10 +7965,8 @@ declare module "@tiptap/core" {
|
|
|
7961
7965
|
|
|
7962
7966
|
declare module "@tiptap/core" {
|
|
7963
7967
|
interface Commands<ReturnType> {
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
src: string;
|
|
7967
|
-
}) => ReturnType;
|
|
7968
|
+
transcript: {
|
|
7969
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
7968
7970
|
};
|
|
7969
7971
|
}
|
|
7970
7972
|
}
|
|
@@ -7972,8 +7974,10 @@ declare module "@tiptap/core" {
|
|
|
7972
7974
|
|
|
7973
7975
|
declare module "@tiptap/core" {
|
|
7974
7976
|
interface Commands<ReturnType> {
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
+
videoEmbed: {
|
|
7978
|
+
setVideoEmbed: (options: {
|
|
7979
|
+
src: string;
|
|
7980
|
+
}) => ReturnType;
|
|
7977
7981
|
};
|
|
7978
7982
|
}
|
|
7979
7983
|
}
|
package/dist/f0.js
CHANGED
|
@@ -4,8 +4,8 @@ import { jsx as f, jsxs as j, Fragment as Hr } from "react/jsx-runtime";
|
|
|
4
4
|
import * as ot from "react";
|
|
5
5
|
import B, { forwardRef as Ge, useRef as K, useImperativeHandle as mc, Children as sn, createContext as Et, useContext as ft, useState as Q, useMemo as U, useEffect as J, useCallback as le, useLayoutEffect as ai, createElement as Kr, isValidElement as ga, Fragment as pc, memo as gc, useReducer as vc, cloneElement as yc, PureComponent as bc } from "react";
|
|
6
6
|
import { createPortal as va, unstable_batchedUpdates as Yr, flushSync as xc } from "react-dom";
|
|
7
|
-
import { L as ya, C as wc, i as ba, D as _c, S as rs, a as Cc, f as Zn, b as br, c as Ec, A as kc, d as Xr, e as xa, E as Sc, g as en, h as Dc, j as Nc, k as Rc, l as tr, m as wa, u as Ac, G as Tc, n as Oc, o as ns, p as Mc, q as _a, r as Lc, B as Ca, X as Ea, Y as oi, s as Ic, t as ka, v as Pc, w as zc, x as Fc, y as Bc, z as Hc, F as Vc, H as jc, I as $c, J as is, K as Wc, M as Er, N as qn, O as Gc, P as Uc, Q as Zc, R as qc, T as Kc, U as Yc, V as Xc, W as Jc, Z as Qc, _ as ed, $ as td, a0 as ss, a1 as rd, a2 as nd, a3 as as, a4 as Sa, a5 as id, a6 as sd, a7 as ad, a8 as od, a9 as Da, aa as Ei, ab as ld, ac as cd, ad as dd, ae as ud, af as hd, ag as Na, ah as Ra, ai as fd, aj as md, ak as pd, al as gd } from "./DataCollectionStorageProvider-
|
|
8
|
-
import { aB as ly, am as cy, an as dy, aq as uy, at as hy, au as fy, av as my, ax as py, ay as gy, az as vy, aw as yy, ao as by, ap as xy, aA as wy, ar as _y, as as Cy, aC as Ey, aD as ky, aE as Sy, aF as Dy } from "./DataCollectionStorageProvider-
|
|
7
|
+
import { L as ya, C as wc, i as ba, D as _c, S as rs, a as Cc, f as Zn, b as br, c as Ec, A as kc, d as Xr, e as xa, E as Sc, g as en, h as Dc, j as Nc, k as Rc, l as tr, m as wa, u as Ac, G as Tc, n as Oc, o as ns, p as Mc, q as _a, r as Lc, B as Ca, X as Ea, Y as oi, s as Ic, t as ka, v as Pc, w as zc, x as Fc, y as Bc, z as Hc, F as Vc, H as jc, I as $c, J as is, K as Wc, M as Er, N as qn, O as Gc, P as Uc, Q as Zc, R as qc, T as Kc, U as Yc, V as Xc, W as Jc, Z as Qc, _ as ed, $ as td, a0 as ss, a1 as rd, a2 as nd, a3 as as, a4 as Sa, a5 as id, a6 as sd, a7 as ad, a8 as od, a9 as Da, aa as Ei, ab as ld, ac as cd, ad as dd, ae as ud, af as hd, ag as Na, ah as Ra, ai as fd, aj as md, ak as pd, al as gd } from "./DataCollectionStorageProvider-CJOXFIRS.js";
|
|
8
|
+
import { aB as ly, am as cy, an as dy, aq as uy, at as hy, au as fy, av as my, ax as py, ay as gy, az as vy, aw as yy, ao as by, ap as xy, aA as wy, ar as _y, as as Cy, aC as Ey, aD as ky, aE as Sy, aF as Dy } from "./DataCollectionStorageProvider-CJOXFIRS.js";
|
|
9
9
|
import { A as Ry, F as Ay, c as Ty, b as Oy, a as My, o as Ly, u as Iy } from "./F0HILActionConfirmation-DVS7vYT1.js";
|
|
10
10
|
import { defaultTranslations as zy } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const vd = {
|
|
@@ -648,10 +648,8 @@ declare module "@tiptap/core" {
|
|
|
648
648
|
|
|
649
649
|
declare module "@tiptap/core" {
|
|
650
650
|
interface Commands<ReturnType> {
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
src: string;
|
|
654
|
-
}) => ReturnType;
|
|
651
|
+
transcript: {
|
|
652
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
655
653
|
};
|
|
656
654
|
}
|
|
657
655
|
}
|
|
@@ -659,8 +657,10 @@ declare module "@tiptap/core" {
|
|
|
659
657
|
|
|
660
658
|
declare module "@tiptap/core" {
|
|
661
659
|
interface Commands<ReturnType> {
|
|
662
|
-
|
|
663
|
-
|
|
660
|
+
videoEmbed: {
|
|
661
|
+
setVideoEmbed: (options: {
|
|
662
|
+
src: string;
|
|
663
|
+
}) => ReturnType;
|
|
664
664
|
};
|
|
665
665
|
}
|
|
666
666
|
}
|