@factorialco/f0-react 4.56.0 → 4.56.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/{F0AiProcessingOverlay-D5hKB9d7.js → F0AiProcessingOverlay-CDg_WXQ8.js} +792 -769
- package/dist/ai.d.ts +6 -6
- package/dist/ai.js +1 -1
- package/dist/component-status.d.ts +6 -6
- package/dist/component-status.js +300 -235
- package/dist/experimental.d.ts +14 -6
- package/dist/f0.d.ts +14 -6
- package/dist/f0.js +2 -2
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1377,6 +1377,14 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
|
|
|
1377
1377
|
* expandable region (e.g. a tree/graph expander).
|
|
1378
1378
|
*/
|
|
1379
1379
|
"aria-expanded"?: boolean;
|
|
1380
|
+
/**
|
|
1381
|
+
* Identifies the expandable region controlled by the button.
|
|
1382
|
+
*/
|
|
1383
|
+
"aria-controls"?: string;
|
|
1384
|
+
/**
|
|
1385
|
+
* Describes the type of popup opened by the button.
|
|
1386
|
+
*/
|
|
1387
|
+
"aria-haspopup"?: React.AriaAttributes["aria-haspopup"];
|
|
1380
1388
|
/**
|
|
1381
1389
|
* Forwarded to the underlying button. Use `-1` to take the button out of the
|
|
1382
1390
|
* tab order (e.g. when a parent manages focus via roving tabindex).
|
|
@@ -11438,10 +11446,8 @@ declare module "@tiptap/core" {
|
|
|
11438
11446
|
|
|
11439
11447
|
declare module "@tiptap/core" {
|
|
11440
11448
|
interface Commands<ReturnType> {
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
src: string;
|
|
11444
|
-
}) => ReturnType;
|
|
11449
|
+
transcript: {
|
|
11450
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
11445
11451
|
};
|
|
11446
11452
|
}
|
|
11447
11453
|
}
|
|
@@ -11449,8 +11455,10 @@ declare module "@tiptap/core" {
|
|
|
11449
11455
|
|
|
11450
11456
|
declare module "@tiptap/core" {
|
|
11451
11457
|
interface Commands<ReturnType> {
|
|
11452
|
-
|
|
11453
|
-
|
|
11458
|
+
videoEmbed: {
|
|
11459
|
+
setVideoEmbed: (options: {
|
|
11460
|
+
src: string;
|
|
11461
|
+
}) => ReturnType;
|
|
11454
11462
|
};
|
|
11455
11463
|
}
|
|
11456
11464
|
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -1912,6 +1912,14 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
|
|
|
1912
1912
|
* expandable region (e.g. a tree/graph expander).
|
|
1913
1913
|
*/
|
|
1914
1914
|
"aria-expanded"?: boolean;
|
|
1915
|
+
/**
|
|
1916
|
+
* Identifies the expandable region controlled by the button.
|
|
1917
|
+
*/
|
|
1918
|
+
"aria-controls"?: string;
|
|
1919
|
+
/**
|
|
1920
|
+
* Describes the type of popup opened by the button.
|
|
1921
|
+
*/
|
|
1922
|
+
"aria-haspopup"?: React.AriaAttributes["aria-haspopup"];
|
|
1915
1923
|
/**
|
|
1916
1924
|
* Forwarded to the underlying button. Use `-1` to take the button out of the
|
|
1917
1925
|
* tab order (e.g. when a parent manages focus via roving tabindex).
|
|
@@ -18512,10 +18520,8 @@ declare module "@tiptap/core" {
|
|
|
18512
18520
|
|
|
18513
18521
|
declare module "@tiptap/core" {
|
|
18514
18522
|
interface Commands<ReturnType> {
|
|
18515
|
-
|
|
18516
|
-
|
|
18517
|
-
src: string;
|
|
18518
|
-
}) => ReturnType;
|
|
18523
|
+
transcript: {
|
|
18524
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
18519
18525
|
};
|
|
18520
18526
|
}
|
|
18521
18527
|
}
|
|
@@ -18523,8 +18529,10 @@ declare module "@tiptap/core" {
|
|
|
18523
18529
|
|
|
18524
18530
|
declare module "@tiptap/core" {
|
|
18525
18531
|
interface Commands<ReturnType> {
|
|
18526
|
-
|
|
18527
|
-
|
|
18532
|
+
videoEmbed: {
|
|
18533
|
+
setVideoEmbed: (options: {
|
|
18534
|
+
src: string;
|
|
18535
|
+
}) => ReturnType;
|
|
18528
18536
|
};
|
|
18529
18537
|
}
|
|
18530
18538
|
}
|
package/dist/f0.js
CHANGED
|
@@ -3,8 +3,8 @@ import { hy as phe, C as ghe, D as mhe, aU as yhe, c as bhe, F as _he, a as xhe,
|
|
|
3
3
|
import { jsx as w, jsxs as O, Fragment as it } from "react/jsx-runtime";
|
|
4
4
|
import * as bt from "react";
|
|
5
5
|
import ZF, { forwardRef as Dr, useRef as ie, useImperativeHandle as jF, Children as Sd, createContext as Ba, useContext as ts, useState as se, useMemo as ye, useEffect as me, useCallback as le, useLayoutEffect as Nw, isValidElement as VN, Fragment as Fl, useSyncExternalStore as yl, useId as ic, memo as KF } from "react";
|
|
6
|
-
import { D as QF, E as JF, G as e5, H as t5, I as r5, J as n5, K as Cd, L as k_, M as FN, N as GN, O as Jn, P as i5, Q as a5, R as o5, S as s5, U as l5, F as u5 } from "./F0AiProcessingOverlay-
|
|
7
|
-
import { A as Ude, C as $de, t as Yde, s as Xde, v as qde, y as Zde, l as jde, i as Kde, q as Qde, z as Jde, B as eve, p as tve, r as rve, j as nve, e as ive, g as ave, k as ove, T as sve, w as lve, h as uve, a as cve, n as fve, m as hve, o as dve, b as vve, f as pve, x as gve, c as mve, d as yve, u as bve } from "./F0AiProcessingOverlay-
|
|
6
|
+
import { D as QF, E as JF, G as e5, H as t5, I as r5, J as n5, K as Cd, L as k_, M as FN, N as GN, O as Jn, P as i5, Q as a5, R as o5, S as s5, U as l5, F as u5 } from "./F0AiProcessingOverlay-CDg_WXQ8.js";
|
|
7
|
+
import { A as Ude, C as $de, t as Yde, s as Xde, v as qde, y as Zde, l as jde, i as Kde, q as Qde, z as Jde, B as eve, p as tve, r as rve, j as nve, e as ive, g as ave, k as ove, T as sve, w as lve, h as uve, a as cve, n as fve, m as hve, o as dve, b as vve, f as pve, x as gve, c as mve, d as yve, u as bve } from "./F0AiProcessingOverlay-CDg_WXQ8.js";
|
|
8
8
|
import { d as J, u as ep, g as c5, h as js, P as sf, i as Gl, j as f5, f as yi } from "./tooltip-BH6Se8A4.js";
|
|
9
9
|
import { createPortal as tp } from "react-dom";
|
|
10
10
|
import { C as h5, an as d5, ao as v5, ap as p5, aq as Iw, ar as g5, as as m5, at as y5, au as b5, av as _5, aw as x5, ax as w5, i as S5, F as HN, ay as C5, az as T5, aA as D5, aB as A5, aC as M5, aD as WN, aE as E5, aF as rp, aG as Wa, aH as L5, aI as R_, aJ as O_, I as N5, aK as I5, aL as ps, aM as UN, aN as P5, aO as k5, aP as R5, aQ as O5, aR as B5, aS as z5, _ as V5, ae as F5, aT as G5, U as H5, aU as W5, aV as U5, c as np, R as B_, u as z_, Y as $N, O as V_, aW as YN, aX as Pw, aY as F_, r as $5, e as XN, a2 as qN, aZ as Y5, a_ as X5, a$ as q5, b0 as Z5, M as j5 } from "./index-BF3g-R2k.js";
|
|
@@ -1071,10 +1071,8 @@ declare module "@tiptap/core" {
|
|
|
1071
1071
|
|
|
1072
1072
|
declare module "@tiptap/core" {
|
|
1073
1073
|
interface Commands<ReturnType> {
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
src: string;
|
|
1077
|
-
}) => ReturnType;
|
|
1074
|
+
transcript: {
|
|
1075
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1078
1076
|
};
|
|
1079
1077
|
}
|
|
1080
1078
|
}
|
|
@@ -1082,8 +1080,10 @@ declare module "@tiptap/core" {
|
|
|
1082
1080
|
|
|
1083
1081
|
declare module "@tiptap/core" {
|
|
1084
1082
|
interface Commands<ReturnType> {
|
|
1085
|
-
|
|
1086
|
-
|
|
1083
|
+
videoEmbed: {
|
|
1084
|
+
setVideoEmbed: (options: {
|
|
1085
|
+
src: string;
|
|
1086
|
+
}) => ReturnType;
|
|
1087
1087
|
};
|
|
1088
1088
|
}
|
|
1089
1089
|
}
|