@factorialco/f0-react 1.303.4 → 1.303.6
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/experimental.d.ts +32 -29
- package/dist/experimental.js +4679 -4610
- package/dist/f0.d.ts +30 -28
- package/dist/f0.js +2 -2
- package/dist/{hooks-BvQUUeUk.js → hooks-CSPsU7f1.js} +8649 -8635
- package/dist/i18n-provider-defaults.d.ts +29 -28
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1884,6 +1884,7 @@ export declare const defaultTranslations: {
|
|
|
1884
1884
|
readonly placeholder: "Respondent's answer";
|
|
1885
1885
|
};
|
|
1886
1886
|
readonly labels: {
|
|
1887
|
+
readonly applyingChanges: "Applying changes";
|
|
1887
1888
|
readonly endOfSection: "End of section";
|
|
1888
1889
|
readonly title: "Title";
|
|
1889
1890
|
readonly titlePlaceholder: "Question title";
|
|
@@ -3232,6 +3233,7 @@ export declare const modules: {
|
|
|
3232
3233
|
readonly profile: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3233
3234
|
readonly project_management: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3234
3235
|
readonly reports: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3236
|
+
readonly salary_advance: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3235
3237
|
readonly settings: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3236
3238
|
readonly personal_settings: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
3237
3239
|
readonly shift_management: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
@@ -4681,32 +4683,6 @@ declare global {
|
|
|
4681
4683
|
}
|
|
4682
4684
|
}
|
|
4683
4685
|
|
|
4684
|
-
declare module "gridstack" {
|
|
4685
|
-
interface GridStackWidget {
|
|
4686
|
-
id?: string;
|
|
4687
|
-
allowedSizes?: Array<{
|
|
4688
|
-
w: number;
|
|
4689
|
-
h: number;
|
|
4690
|
-
}>;
|
|
4691
|
-
meta?: Record<string, unknown>;
|
|
4692
|
-
}
|
|
4693
|
-
interface GridStackNode {
|
|
4694
|
-
allowedSizes?: Array<{
|
|
4695
|
-
w: number;
|
|
4696
|
-
h: number;
|
|
4697
|
-
}>;
|
|
4698
|
-
}
|
|
4699
|
-
}
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
declare module "@tiptap/core" {
|
|
4703
|
-
interface Commands<ReturnType> {
|
|
4704
|
-
aiBlock: {
|
|
4705
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4706
|
-
};
|
|
4707
|
-
}
|
|
4708
|
-
}
|
|
4709
|
-
|
|
4710
4686
|
|
|
4711
4687
|
declare module "@tiptap/core" {
|
|
4712
4688
|
interface Commands<ReturnType> {
|
|
@@ -4728,13 +4704,39 @@ declare module "@tiptap/core" {
|
|
|
4728
4704
|
|
|
4729
4705
|
declare module "@tiptap/core" {
|
|
4730
4706
|
interface Commands<ReturnType> {
|
|
4731
|
-
|
|
4732
|
-
|
|
4707
|
+
aiBlock: {
|
|
4708
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4733
4709
|
};
|
|
4734
4710
|
}
|
|
4735
4711
|
}
|
|
4736
4712
|
|
|
4713
|
+
declare module "gridstack" {
|
|
4714
|
+
interface GridStackWidget {
|
|
4715
|
+
id?: string;
|
|
4716
|
+
allowedSizes?: Array<{
|
|
4717
|
+
w: number;
|
|
4718
|
+
h: number;
|
|
4719
|
+
}>;
|
|
4720
|
+
meta?: Record<string, unknown>;
|
|
4721
|
+
}
|
|
4722
|
+
interface GridStackNode {
|
|
4723
|
+
allowedSizes?: Array<{
|
|
4724
|
+
w: number;
|
|
4725
|
+
h: number;
|
|
4726
|
+
}>;
|
|
4727
|
+
}
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4737
4730
|
|
|
4738
4731
|
declare namespace Calendar {
|
|
4739
4732
|
var displayName: string;
|
|
4740
4733
|
}
|
|
4734
|
+
|
|
4735
|
+
|
|
4736
|
+
declare module "@tiptap/core" {
|
|
4737
|
+
interface Commands<ReturnType> {
|
|
4738
|
+
moodTracker: {
|
|
4739
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
4740
|
+
};
|
|
4741
|
+
}
|
|
4742
|
+
}
|
package/dist/f0.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as Cn, C as Gr, c as W, a as Di, u as _n, m as Ri, i as En, B as Si, O as Wr, p as $r, w as Ur, S as Fe, b as jr, F as Dn, d as Kr, A as Xr, D as Yr, e as Vr, f as De, g as qr, h as pe, j as qi, k as Jr, l as di, n as lt, o as Zr, q as Qr, r as Ot, s as Rn, E as es, t as zt, v as ts, x as is, y as ns, z as rs, G as Xe, H as Sn, I as ss, J as os, K as as, M as Ji, N as ls, P as Nn, Q as cs, R as On, X as An, Y as vi, T as ds, U as Tn, V as us, W as hs, Z as fs, _ as gs, $ as ps, a0 as ms, a1 as vs, a2 as ys, a3 as Zi, a4 as bs, a5 as ct, a6 as ui, a7 as xs, a8 as ws, a9 as Cs, aa as _s, ab as Es, ac as Ds, ad as Rs, ae as Ss, af as Ns, ag as Os, ah as kn, ai as As, aj as Mt, ak as zn, al as Pn, am as Ts, an as Mn, ao as Ln, ap as In, aq as ks, ar as zs, as as Hn, at as Ps, au as Ms, av as Ls, aw as Is, ax as Hs, ay as Bs, az as Bn, aA as qe, aB as Fn, aC as Fs, aD as Gs, aE as Qi, aF as Ws, aG as Gn, aH as $s, aI as Us, aJ as js, aK as Ks, aL as Xs, aM as Ys, aN as Vs, aO as qs, aP as Js, aQ as Zs, aR as Qs, aS as eo } from "./hooks-
|
|
2
|
-
import { bl as Yc, by as Vc, bH as qc, aT as Jc, aU as Zc, aV as Qc, aW as ed, aX as td, aY as id, aZ as nd, a_ as rd, b0 as sd, b1 as od, b2 as ad, b3 as ld, b4 as cd, b5 as dd, b6 as ud, bD as hd, b8 as fd, b9 as gd, bc as pd, bd as md, be as vd, bf as yd, bi as bd, bj as xd, bk as wd, bn as Cd, bb as _d, bm as Ed, bh as Dd, bE as Rd, bx as Sd, bs as Nd, bv as Od, br as Ad, bI as Td, bq as kd, bp as zd, a$ as Pd, b7 as Md, ba as Ld, bg as Id, bo as Hd, bt as Bd, bz as Fd, bA as Gd, bB as Wd, bJ as $d, bu as Ud, bC as jd, bG as Kd, bw as Xd, bF as Yd } from "./hooks-
|
|
1
|
+
import { L as Cn, C as Gr, c as W, a as Di, u as _n, m as Ri, i as En, B as Si, O as Wr, p as $r, w as Ur, S as Fe, b as jr, F as Dn, d as Kr, A as Xr, D as Yr, e as Vr, f as De, g as qr, h as pe, j as qi, k as Jr, l as di, n as lt, o as Zr, q as Qr, r as Ot, s as Rn, E as es, t as zt, v as ts, x as is, y as ns, z as rs, G as Xe, H as Sn, I as ss, J as os, K as as, M as Ji, N as ls, P as Nn, Q as cs, R as On, X as An, Y as vi, T as ds, U as Tn, V as us, W as hs, Z as fs, _ as gs, $ as ps, a0 as ms, a1 as vs, a2 as ys, a3 as Zi, a4 as bs, a5 as ct, a6 as ui, a7 as xs, a8 as ws, a9 as Cs, aa as _s, ab as Es, ac as Ds, ad as Rs, ae as Ss, af as Ns, ag as Os, ah as kn, ai as As, aj as Mt, ak as zn, al as Pn, am as Ts, an as Mn, ao as Ln, ap as In, aq as ks, ar as zs, as as Hn, at as Ps, au as Ms, av as Ls, aw as Is, ax as Hs, ay as Bs, az as Bn, aA as qe, aB as Fn, aC as Fs, aD as Gs, aE as Qi, aF as Ws, aG as Gn, aH as $s, aI as Us, aJ as js, aK as Ks, aL as Xs, aM as Ys, aN as Vs, aO as qs, aP as Js, aQ as Zs, aR as Qs, aS as eo } from "./hooks-CSPsU7f1.js";
|
|
2
|
+
import { bl as Yc, by as Vc, bH as qc, aT as Jc, aU as Zc, aV as Qc, aW as ed, aX as td, aY as id, aZ as nd, a_ as rd, b0 as sd, b1 as od, b2 as ad, b3 as ld, b4 as cd, b5 as dd, b6 as ud, bD as hd, b8 as fd, b9 as gd, bc as pd, bd as md, be as vd, bf as yd, bi as bd, bj as xd, bk as wd, bn as Cd, bb as _d, bm as Ed, bh as Dd, bE as Rd, bx as Sd, bs as Nd, bv as Od, br as Ad, bI as Td, bq as kd, bp as zd, a$ as Pd, b7 as Md, ba as Ld, bg as Id, bo as Hd, bt as Bd, bz as Fd, bA as Gd, bB as Wd, bJ as $d, bu as Ud, bC as jd, bG as Kd, bw as Xd, bF as Yd } from "./hooks-CSPsU7f1.js";
|
|
3
3
|
import { jsx as g, jsxs as z, Fragment as qt } from "react/jsx-runtime";
|
|
4
4
|
import P, { forwardRef as oe, useRef as L, useImperativeHandle as to, Children as Lt, createContext as Se, useContext as xe, useState as B, useMemo as H, useEffect as M, useCallback as $, useLayoutEffect as yi, createElement as en, isValidElement as Wn, Fragment as io, memo as no, useReducer as ro, cloneElement as so, PureComponent as oo } from "react";
|
|
5
5
|
import { createPortal as $n, unstable_batchedUpdates as At } from "react-dom";
|