@factorialco/f0-react 1.389.0 → 1.390.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/{DataCollectionStorageProvider-CiVDaZuI.js → DataCollectionStorageProvider-DliGArb_.js} +1 -1
- package/dist/{F0AiChat-DIBpfRHh.js → F0AiChat-nPbqtFaA.js} +12880 -12804
- package/dist/{F0HILActionConfirmation-Q8FqZblZ.js → F0HILActionConfirmation-B5UWkFgg.js} +1 -1
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +3 -1
- package/dist/experimental.js +4769 -4748
- package/dist/f0.d.ts +53 -8
- package/dist/f0.js +146 -145
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1051,6 +1051,10 @@ export declare type ButtonDropdownItem<T = string> = {
|
|
|
1051
1051
|
description?: string;
|
|
1052
1052
|
};
|
|
1053
1053
|
|
|
1054
|
+
export declare type ButtonDropdownMode = (typeof buttonDropdownModes)[number];
|
|
1055
|
+
|
|
1056
|
+
export declare const buttonDropdownModes: readonly ["split", "dropdown"];
|
|
1057
|
+
|
|
1054
1058
|
export declare type ButtonDropdownSize = (typeof buttonDropdownSizes)[number];
|
|
1055
1059
|
|
|
1056
1060
|
export declare const buttonDropdownSizes: readonly ["sm", "md", "lg"];
|
|
@@ -1785,6 +1789,8 @@ declare type DataCollectionSourceDefinition<R extends RecordType = RecordType, F
|
|
|
1785
1789
|
itemActions?: ItemActions;
|
|
1786
1790
|
/** Available primary actions that can be performed on the collection */
|
|
1787
1791
|
primaryActions?: PrimaryActionsDefinitionFn;
|
|
1792
|
+
/** Label for the primary actions dropdown trigger button */
|
|
1793
|
+
primaryActionsLabel?: string;
|
|
1788
1794
|
/** Available secondary actions that can be performed on the collection */
|
|
1789
1795
|
secondaryActions?: SecondaryActionsDefinition;
|
|
1790
1796
|
/** Available summaries fields. If not provided, summaries is not allowed. */
|
|
@@ -3454,9 +3460,9 @@ export declare const F0Button: WithDataTestIdReturnType_3<ForwardRefExoticCompon
|
|
|
3454
3460
|
variant?: Exclude<ButtonInternalProps["variant"], "ai">;
|
|
3455
3461
|
} & RefAttributes<HTMLAnchorElement | HTMLButtonElement>>>;
|
|
3456
3462
|
|
|
3457
|
-
export declare const F0ButtonDropdown: WithDataTestIdReturnType_6<(
|
|
3463
|
+
export declare const F0ButtonDropdown: WithDataTestIdReturnType_6<(props: F0ButtonDropdownProps) => JSX_2.Element>;
|
|
3458
3464
|
|
|
3459
|
-
|
|
3465
|
+
declare type F0ButtonDropdownBaseProps<T = string> = {
|
|
3460
3466
|
/**
|
|
3461
3467
|
* The size of the button.
|
|
3462
3468
|
* @default "md"
|
|
@@ -3471,10 +3477,6 @@ export declare type F0ButtonDropdownProps<T = string> = {
|
|
|
3471
3477
|
* @default "default"
|
|
3472
3478
|
*/
|
|
3473
3479
|
variant?: ButtonDropdownVariant;
|
|
3474
|
-
/**
|
|
3475
|
-
* The value of the button.
|
|
3476
|
-
*/
|
|
3477
|
-
value?: T;
|
|
3478
3480
|
/**
|
|
3479
3481
|
* The disabled state of the button.
|
|
3480
3482
|
* @default false
|
|
@@ -3490,8 +3492,51 @@ export declare type F0ButtonDropdownProps<T = string> = {
|
|
|
3490
3492
|
* @default undefined
|
|
3491
3493
|
*/
|
|
3492
3494
|
tooltip?: string;
|
|
3495
|
+
};
|
|
3496
|
+
|
|
3497
|
+
/**
|
|
3498
|
+
* Props for dropdown mode: a unified button with chevron that opens a dropdown
|
|
3499
|
+
* showing all items (with optional descriptions and icons).
|
|
3500
|
+
*/
|
|
3501
|
+
declare type F0ButtonDropdownDropdownProps<T = string> = F0ButtonDropdownBaseProps<T> & {
|
|
3502
|
+
/**
|
|
3503
|
+
* The rendering mode.
|
|
3504
|
+
* - "dropdown": Single button with chevron — clicking anywhere opens the dropdown with all items.
|
|
3505
|
+
*/
|
|
3506
|
+
mode: "dropdown";
|
|
3507
|
+
/**
|
|
3508
|
+
* Optional trigger button label. Customize the label shown on the
|
|
3509
|
+
* trigger button independently from the dropdown items.
|
|
3510
|
+
* Falls back to the first item's label if not provided.
|
|
3511
|
+
*/
|
|
3512
|
+
trigger?: string;
|
|
3513
|
+
/**
|
|
3514
|
+
* Called when a dropdown item is clicked.
|
|
3515
|
+
* @param value The value of the item that was clicked.
|
|
3516
|
+
* @param item The item that was clicked.
|
|
3517
|
+
*/
|
|
3518
|
+
onClick: (value: T, item: ButtonDropdownItem<T>) => void;
|
|
3519
|
+
};
|
|
3520
|
+
|
|
3521
|
+
export declare type F0ButtonDropdownProps<T = string> = F0ButtonDropdownSplitProps<T> | F0ButtonDropdownDropdownProps<T>;
|
|
3522
|
+
|
|
3523
|
+
/**
|
|
3524
|
+
* Props for split mode (default): a split button where the main button triggers the selected item,
|
|
3525
|
+
* and a chevron reveals the remaining items.
|
|
3526
|
+
*/
|
|
3527
|
+
declare type F0ButtonDropdownSplitProps<T = string> = F0ButtonDropdownBaseProps<T> & {
|
|
3528
|
+
/**
|
|
3529
|
+
* The rendering mode.
|
|
3530
|
+
* - "split": (default) Split button — main button triggers the selected item, chevron reveals others.
|
|
3531
|
+
* @default "split"
|
|
3532
|
+
*/
|
|
3533
|
+
mode?: "split";
|
|
3534
|
+
/**
|
|
3535
|
+
* The currently selected value. Defaults to the first item.
|
|
3536
|
+
*/
|
|
3537
|
+
value?: T;
|
|
3493
3538
|
/**
|
|
3494
|
-
*
|
|
3539
|
+
* Called when the main button or a dropdown item is clicked.
|
|
3495
3540
|
* @param value The value of the item that was clicked.
|
|
3496
3541
|
* @param item The item that was clicked.
|
|
3497
3542
|
*/
|
|
@@ -6805,7 +6850,7 @@ declare type PrevNextDateNavigation = {
|
|
|
6805
6850
|
next: DateRange | false;
|
|
6806
6851
|
};
|
|
6807
6852
|
|
|
6808
|
-
declare type PrimaryActionItemDefinition = Pick<DropdownItemObject, "label" | "icon"> & {
|
|
6853
|
+
declare type PrimaryActionItemDefinition = Pick<DropdownItemObject, "label" | "icon" | "description"> & {
|
|
6809
6854
|
loading?: boolean;
|
|
6810
6855
|
onClick?: () => void | Promise<void>;
|
|
6811
6856
|
disabled?: boolean;
|
package/dist/f0.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ad as ye, ae as dt, a9 as ue, aa as Xt, af as co, ag as Di, ah as Ni, ai as os, aj as Wl, ak as uo, al as wt, u as Tt, am as Wr, an as Gl, ao as Ul, ap as Zl, aq as ql, ar as at, as as Kl, at as Xl, au as Nr, av as Xn, aw as Yl, ax as Jl, ay as Ql, az as as, aA as ec, aB as tc, aC as fo, aD as rc, aE as ho, aF as mo, aG as Ri, aH as po, aI as go, aJ as ln, aK as vo, aL as nc, aM as ic, aN as sc, aO as oc, aP as ac, ab as qe, aQ as ls, aR as lc, aS as cc, aT as dc, aU as uc, aV as yo, aW as fc, aX as hc, aY as mc, aZ as bo, a_ as pc, a$ as ar, b0 as gc, b1 as vc, b2 as yc, b3 as bc, b4 as Ti, b5 as xc, b6 as xo, b7 as wc, ac as _c, b8 as Cc, b9 as Ec, ba as Sc, bb as kc, bc as Dc, bd as wo, be as Nc, bf as Rc, bg as Tc, bh as Ac, bi as Oc, bj as Mc, bk as Lc, bl as Fc, bm as Ic, bn as Pc, bo as zc, bp as Bc, I as Vc, bq as Hc, br as jc, bs as $c, bt as Wc } from "./F0AiChat-
|
|
2
|
-
import { A as
|
|
1
|
+
import { ad as ye, ae as dt, a9 as ue, aa as Xt, af as co, ag as Di, ah as Ni, ai as os, aj as Wl, ak as uo, al as wt, u as Tt, am as Wr, an as Gl, ao as Ul, ap as Zl, aq as ql, ar as at, as as Kl, at as Xl, au as Nr, av as Xn, aw as Yl, ax as Jl, ay as Ql, az as as, aA as ec, aB as tc, aC as fo, aD as rc, aE as ho, aF as mo, aG as Ri, aH as po, aI as go, aJ as ln, aK as vo, aL as nc, aM as ic, aN as sc, aO as oc, aP as ac, ab as qe, aQ as ls, aR as lc, aS as cc, aT as dc, aU as uc, aV as yo, aW as fc, aX as hc, aY as mc, aZ as bo, a_ as pc, a$ as ar, b0 as gc, b1 as vc, b2 as yc, b3 as bc, b4 as Ti, b5 as xc, b6 as xo, b7 as wc, ac as _c, b8 as Cc, b9 as Ec, ba as Sc, bb as kc, bc as Dc, bd as wo, be as Nc, bf as Rc, bg as Tc, bh as Ac, bi as Oc, bj as Mc, bk as Lc, bl as Fc, bm as Ic, bn as Pc, bo as zc, bp as Bc, I as Vc, bq as Hc, br as jc, bs as $c, bt as Wc } from "./F0AiChat-nPbqtFaA.js";
|
|
2
|
+
import { A as Tv, bS as Av, B as Ov, C as Mv, q as Lv, c5 as Fv, E as Iv, h as Pv, F as zv, a as Bv, D as Vv, i as Hv, b as jv, bu as $v, bv as Wv, bw as Gv, bx as Uv, bz as Zv, bA as qv, bB as Kv, bC as Xv, bF as Yv, j as Jv, bG as Qv, bH as ey, bI as ty, c1 as ry, w as ny, x as iy, y as sy, bL as oy, bM as ay, bN as ly, bO as cy, bQ as dy, bR as uy, z as fy, c as hy, bT as my, r as py, s as gy, t as vy, H as yy, m as by, L as xy, O as wy, bK as _y, v as Cy, P as Ey, S as Sy, T as ky, n as Dy, bP as Ny, o as Ry, p as Ty, U as Ay, c2 as Oy, bD as My, bE as Ly, bY as Fy, k as Iy, l as Py, b$ as zy, bX as By, c6 as Vy, bW as Hy, bV as jy, by as $y, d as Wy, bU as Gy, bZ as Uy, e as Zy, c7 as qy, bJ as Ky, b_ as Xy, g as Yy, f as Jy, c4 as Qy, c0 as eb, c3 as tb } from "./F0AiChat-nPbqtFaA.js";
|
|
3
3
|
import { jsx as f, jsxs as W, Fragment as Yt } from "react/jsx-runtime";
|
|
4
4
|
import * as lt from "react";
|
|
5
5
|
import q, { forwardRef as Ke, useRef as Y, useImperativeHandle as Gc, Children as cn, createContext as vt, useContext as ct, useState as ie, useMemo as j, useEffect as ne, useCallback as X, useLayoutEffect as ci, createElement as Qr, isValidElement as _o, Fragment as Uc, memo as Zc, useReducer as qc, cloneElement as Kc, PureComponent as Xc, useId as Yc } from "react";
|
|
6
6
|
import { createPortal as Co, unstable_batchedUpdates as en, flushSync as Jc } from "react-dom";
|
|
7
|
-
import { L as Eo, C as Qc, i as So, S as cs, a as ed, f as Yn, b as _r, c as td, A as rd, d as tn, e as ko, E as nd, g as sn, h as id, j as sd, k as od, l as ir, m as Do, u as ad, G as ld, n as cd, o as ds, p as dd, q as No, r as ud, B as Ro, X as To, Y as di, s as fd, t as Ao, v as hd, w as md, x as pd, y as gd, z as vd, D as yd, F as bd, H as xd, I as us, J as wd, K as _d, M as Cd, N as Ed, O as Sd, P as kd, Q as Dd, R as Nd, V as Rd, T as Td, U as ui, W as Oo, Z as Ad, _ as Od, $ as Md, a0 as Ld, a1 as Mo, a2 as Lo, a3 as Fd, a4 as Fo, a5 as Io, a6 as Id, a7 as Pd, a8 as zd, a9 as Bd } from "./DataCollectionStorageProvider-
|
|
8
|
-
import { af as
|
|
9
|
-
import { A as
|
|
10
|
-
import { defaultTranslations as
|
|
7
|
+
import { L as Eo, C as Qc, i as So, S as cs, a as ed, f as Yn, b as _r, c as td, A as rd, d as tn, e as ko, E as nd, g as sn, h as id, j as sd, k as od, l as ir, m as Do, u as ad, G as ld, n as cd, o as ds, p as dd, q as No, r as ud, B as Ro, X as To, Y as di, s as fd, t as Ao, v as hd, w as md, x as pd, y as gd, z as vd, D as yd, F as bd, H as xd, I as us, J as wd, K as _d, M as Cd, N as Ed, O as Sd, P as kd, Q as Dd, R as Nd, V as Rd, T as Td, U as ui, W as Oo, Z as Ad, _ as Od, $ as Md, a0 as Ld, a1 as Mo, a2 as Lo, a3 as Fd, a4 as Fo, a5 as Io, a6 as Id, a7 as Pd, a8 as zd, a9 as Bd } from "./DataCollectionStorageProvider-DliGArb_.js";
|
|
8
|
+
import { af as nb, aa as ib, ad as sb, ae as ob, ab, ac as lb, ag as cb, ah as db, ai as ub, aj as fb } from "./DataCollectionStorageProvider-DliGArb_.js";
|
|
9
|
+
import { A as mb, F as pb, c as gb, b as vb, a as yb, o as bb, u as xb } from "./F0HILActionConfirmation-B5UWkFgg.js";
|
|
10
|
+
import { defaultTranslations as _b } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const Vd = {
|
|
12
12
|
xs: 1,
|
|
13
13
|
sm: 2,
|
|
@@ -9861,7 +9861,7 @@ const Qg = dt(
|
|
|
9861
9861
|
Fa
|
|
9862
9862
|
), ev = tc.filter(
|
|
9863
9863
|
(r) => r !== "ai"
|
|
9864
|
-
), tv = fo, rv = ["default", "outline", "neutral"], nv = fo, iv = ["sm", "md", "lg"],
|
|
9864
|
+
), tv = fo, rv = ["default", "outline", "neutral"], nv = fo, iv = ["split", "dropdown"], sv = ["sm", "md", "lg"], ov = ["compact", "expanded"], av = rc, lv = [
|
|
9865
9865
|
"viridian",
|
|
9866
9866
|
"malibu",
|
|
9867
9867
|
"yellow",
|
|
@@ -9942,9 +9942,9 @@ const Ia = ({
|
|
|
9942
9942
|
] });
|
|
9943
9943
|
};
|
|
9944
9944
|
Ia.displayName = "F0ChipList";
|
|
9945
|
-
const
|
|
9945
|
+
const cv = ye(
|
|
9946
9946
|
at("F0ChipList", Ia)
|
|
9947
|
-
),
|
|
9947
|
+
), dv = ic, dm = Xt({
|
|
9948
9948
|
base: "w-full rounded-md p-2 pr-3 text-f1-foreground",
|
|
9949
9949
|
variants: {
|
|
9950
9950
|
variant: {
|
|
@@ -10028,7 +10028,7 @@ const lv = ye(
|
|
|
10028
10028
|
]
|
|
10029
10029
|
}
|
|
10030
10030
|
) }) });
|
|
10031
|
-
},
|
|
10031
|
+
}, uv = ye(fm), hm = 388;
|
|
10032
10032
|
function Pa({
|
|
10033
10033
|
filters: r,
|
|
10034
10034
|
value: e,
|
|
@@ -10096,7 +10096,7 @@ function Pa({
|
|
|
10096
10096
|
) });
|
|
10097
10097
|
}
|
|
10098
10098
|
Pa.displayName = "F0FilterPickerContent";
|
|
10099
|
-
const
|
|
10099
|
+
const fv = Pa;
|
|
10100
10100
|
var Xr = (r) => r.type === "checkbox", Ut = (r) => r instanceof Date, We = (r) => r == null;
|
|
10101
10101
|
const za = (r) => typeof r == "object";
|
|
10102
10102
|
var Te = (r) => !We(r) && !Array.isArray(r) && za(r) && !Ut(r), Ba = (r) => Te(r) && r.target ? Xr(r.target) ? r.target.checked : r.target.value : r, mm = (r) => r.substring(0, r.search(/\.\d+(\.|$)/)) || r, Va = (r, e) => r.has(mm(e)), pm = (r) => {
|
|
@@ -11376,7 +11376,7 @@ function Jt(r) {
|
|
|
11376
11376
|
return Ee(r, "ZodEffects") ? r._def.schema : r;
|
|
11377
11377
|
}
|
|
11378
11378
|
const fl = /* @__PURE__ */ new WeakMap();
|
|
11379
|
-
function
|
|
11379
|
+
function hv(r, e) {
|
|
11380
11380
|
fl.set(r, e);
|
|
11381
11381
|
const t = r;
|
|
11382
11382
|
return t._f0Config = e, t._innerSchema = r, t;
|
|
@@ -11385,7 +11385,7 @@ function yr(r) {
|
|
|
11385
11385
|
const e = r;
|
|
11386
11386
|
return e._f0Config ? e._f0Config : fl.get(r);
|
|
11387
11387
|
}
|
|
11388
|
-
function
|
|
11388
|
+
function mv(r) {
|
|
11389
11389
|
return yr(r) !== void 0;
|
|
11390
11390
|
}
|
|
11391
11391
|
function yt(r) {
|
|
@@ -15550,7 +15550,7 @@ function El(r, e) {
|
|
|
15550
15550
|
return o;
|
|
15551
15551
|
}, [r, e]);
|
|
15552
15552
|
}
|
|
15553
|
-
function
|
|
15553
|
+
function pv(r, e) {
|
|
15554
15554
|
const t = Jt(r), n = Cl(t), i = [], s = {};
|
|
15555
15555
|
for (const l of n) {
|
|
15556
15556
|
const c = l.config.section;
|
|
@@ -16337,7 +16337,7 @@ function Tl() {
|
|
|
16337
16337
|
hasErrors: t
|
|
16338
16338
|
};
|
|
16339
16339
|
}
|
|
16340
|
-
const
|
|
16340
|
+
const gv = at("F0Form", Nl), Al = vt(null);
|
|
16341
16341
|
function lg() {
|
|
16342
16342
|
const r = ct(Al);
|
|
16343
16343
|
if (!r)
|
|
@@ -17036,7 +17036,7 @@ function wg(r) {
|
|
|
17036
17036
|
const t = r._def;
|
|
17037
17037
|
return t?.typeName === "ZodObject" || t?.typeName === "ZodEffects";
|
|
17038
17038
|
}
|
|
17039
|
-
function
|
|
17039
|
+
function vv(r) {
|
|
17040
17040
|
const {
|
|
17041
17041
|
name: e,
|
|
17042
17042
|
schema: t,
|
|
@@ -17068,14 +17068,14 @@ function gv(r) {
|
|
|
17068
17068
|
a
|
|
17069
17069
|
]);
|
|
17070
17070
|
}
|
|
17071
|
-
const
|
|
17071
|
+
const yv = ye(Il), Pl = Ke((r, e) => /* @__PURE__ */ f(Li, { ref: e, variant: "heading", ...r }));
|
|
17072
17072
|
Pl.displayName = "F0Heading";
|
|
17073
|
-
const
|
|
17073
|
+
const bv = ye(Pl), xv = ye(Dc), wv = ye(
|
|
17074
17074
|
at(
|
|
17075
17075
|
"F0GridStack",
|
|
17076
17076
|
Mi
|
|
17077
17077
|
)
|
|
17078
|
-
),
|
|
17078
|
+
), _v = ye(
|
|
17079
17079
|
at(
|
|
17080
17080
|
"F0TableOfContentPopover",
|
|
17081
17081
|
Fd
|
|
@@ -17285,7 +17285,7 @@ function kg({
|
|
|
17285
17285
|
)
|
|
17286
17286
|
] });
|
|
17287
17287
|
}
|
|
17288
|
-
const
|
|
17288
|
+
const Cv = ye(kg);
|
|
17289
17289
|
function Dg({
|
|
17290
17290
|
mediaUrl: r,
|
|
17291
17291
|
title: e,
|
|
@@ -17413,7 +17413,7 @@ const Ng = ye(Dg), Bl = Ke(
|
|
|
17413
17413
|
}
|
|
17414
17414
|
);
|
|
17415
17415
|
Bl.displayName = "UpsellingBanner";
|
|
17416
|
-
const
|
|
17416
|
+
const Ev = ye(Bl);
|
|
17417
17417
|
function Rg({
|
|
17418
17418
|
isOpen: r,
|
|
17419
17419
|
setIsOpen: e,
|
|
@@ -17501,7 +17501,7 @@ function Rg({
|
|
|
17501
17501
|
)
|
|
17502
17502
|
] });
|
|
17503
17503
|
}
|
|
17504
|
-
const
|
|
17504
|
+
const Sv = ye(Rg), Tg = vt(
|
|
17505
17505
|
null
|
|
17506
17506
|
), Ag = ({ children: r, fullScreen: e = !0 }) => {
|
|
17507
17507
|
const t = Y(null), [n, i] = ie(t.current);
|
|
@@ -17520,7 +17520,7 @@ const Ev = ye(Rg), Tg = vt(
|
|
|
17520
17520
|
) });
|
|
17521
17521
|
}, Og = ({
|
|
17522
17522
|
children: r
|
|
17523
|
-
}) => /* @__PURE__ */ f(Bd, { reducedMotion: "user", children: r }),
|
|
17523
|
+
}) => /* @__PURE__ */ f(Bd, { reducedMotion: "user", children: r }), kv = ({
|
|
17524
17524
|
children: r,
|
|
17525
17525
|
layout: e,
|
|
17526
17526
|
link: t,
|
|
@@ -17552,7 +17552,7 @@ const Ev = ye(Rg), Tg = vt(
|
|
|
17552
17552
|
}
|
|
17553
17553
|
) }) }) }) }) })
|
|
17554
17554
|
}
|
|
17555
|
-
) }), lo = (r) => `datacollection-${r}`,
|
|
17555
|
+
) }), lo = (r) => `datacollection-${r}`, Dv = {
|
|
17556
17556
|
get: async (r) => JSON.parse(
|
|
17557
17557
|
localStorage.getItem(lo(r)) ?? "{}"
|
|
17558
17558
|
),
|
|
@@ -17561,177 +17561,178 @@ const Ev = ye(Rg), Tg = vt(
|
|
|
17561
17561
|
}
|
|
17562
17562
|
};
|
|
17563
17563
|
export {
|
|
17564
|
-
|
|
17565
|
-
|
|
17564
|
+
Tv as A,
|
|
17565
|
+
mb as AiChatTranslationsProvider,
|
|
17566
17566
|
Wg as AreaChart,
|
|
17567
|
-
|
|
17567
|
+
Av as Await,
|
|
17568
17568
|
Gg as BarChart,
|
|
17569
|
-
|
|
17569
|
+
Ov as Blockquote,
|
|
17570
17570
|
Ug as CategoryBarChart,
|
|
17571
|
-
|
|
17571
|
+
Mv as ChatSpinner,
|
|
17572
17572
|
Yg as ComboChart,
|
|
17573
17573
|
Bg as Dashboard,
|
|
17574
17574
|
lc as DataTestIdWrapper,
|
|
17575
|
-
|
|
17576
|
-
|
|
17577
|
-
|
|
17578
|
-
|
|
17579
|
-
|
|
17580
|
-
|
|
17581
|
-
|
|
17582
|
-
|
|
17583
|
-
|
|
17584
|
-
|
|
17585
|
-
|
|
17586
|
-
|
|
17587
|
-
|
|
17575
|
+
nb as DndProvider,
|
|
17576
|
+
Lv as Em,
|
|
17577
|
+
Fv as EmojiImage,
|
|
17578
|
+
Iv as EntityRef,
|
|
17579
|
+
Pv as F0ActionItem,
|
|
17580
|
+
zv as F0AiChat,
|
|
17581
|
+
Bv as F0AiChatProvider,
|
|
17582
|
+
Vv as F0AiChatTextArea,
|
|
17583
|
+
Hv as F0AiCollapsibleMessage,
|
|
17584
|
+
jv as F0AiFullscreenChat,
|
|
17585
|
+
uv as F0Alert,
|
|
17586
|
+
pb as F0AuraVoiceAnimation,
|
|
17587
|
+
$v as F0Avatar,
|
|
17588
17588
|
Td as F0AvatarAlert,
|
|
17589
|
-
|
|
17590
|
-
|
|
17591
|
-
|
|
17589
|
+
Wv as F0AvatarCompany,
|
|
17590
|
+
ib as F0AvatarDate,
|
|
17591
|
+
Gv as F0AvatarEmoji,
|
|
17592
17592
|
bc as F0AvatarFile,
|
|
17593
17593
|
sc as F0AvatarIcon,
|
|
17594
|
-
|
|
17594
|
+
Uv as F0AvatarList,
|
|
17595
17595
|
wo as F0AvatarModule,
|
|
17596
|
-
|
|
17597
|
-
|
|
17596
|
+
Zv as F0AvatarPerson,
|
|
17597
|
+
qv as F0AvatarTeam,
|
|
17598
17598
|
Jg as F0BigNumber,
|
|
17599
17599
|
Qg as F0Box,
|
|
17600
17600
|
qe as F0Button,
|
|
17601
|
-
|
|
17602
|
-
|
|
17603
|
-
|
|
17601
|
+
Kv as F0ButtonDropdown,
|
|
17602
|
+
Xv as F0ButtonToggle,
|
|
17603
|
+
Yv as F0Card,
|
|
17604
17604
|
mc as F0Checkbox,
|
|
17605
|
-
|
|
17606
|
-
|
|
17605
|
+
cv as F0ChipList,
|
|
17606
|
+
Jv as F0DataDownload,
|
|
17607
17607
|
Oo as F0DatePicker,
|
|
17608
|
-
|
|
17609
|
-
|
|
17610
|
-
|
|
17611
|
-
|
|
17612
|
-
|
|
17613
|
-
|
|
17614
|
-
|
|
17615
|
-
|
|
17616
|
-
|
|
17608
|
+
Qv as F0Dialog,
|
|
17609
|
+
ey as F0DialogContext,
|
|
17610
|
+
ty as F0DialogProvider,
|
|
17611
|
+
ry as F0EventCatcherProvider,
|
|
17612
|
+
fv as F0FilterPickerContent,
|
|
17613
|
+
gv as F0Form,
|
|
17614
|
+
wv as F0GridStack,
|
|
17615
|
+
gb as F0HILActionConfirmation,
|
|
17616
|
+
bv as F0Heading,
|
|
17617
17617
|
Wr as F0Icon,
|
|
17618
17618
|
ac as F0Link,
|
|
17619
|
-
|
|
17620
|
-
|
|
17621
|
-
|
|
17622
|
-
|
|
17619
|
+
ny as F0MessageSources,
|
|
17620
|
+
iy as F0OneIcon,
|
|
17621
|
+
sy as F0OneSwitch,
|
|
17622
|
+
kv as F0Provider,
|
|
17623
17623
|
ar as F0Select,
|
|
17624
|
-
|
|
17625
|
-
|
|
17624
|
+
_v as F0TableOfContentPopover,
|
|
17625
|
+
oy as F0TagAlert,
|
|
17626
17626
|
ec as F0TagBalance,
|
|
17627
|
-
|
|
17628
|
-
|
|
17629
|
-
|
|
17630
|
-
|
|
17627
|
+
ay as F0TagCompany,
|
|
17628
|
+
ly as F0TagDot,
|
|
17629
|
+
cy as F0TagList,
|
|
17630
|
+
dy as F0TagPerson,
|
|
17631
17631
|
Nc as F0TagRaw,
|
|
17632
17632
|
Rc as F0TagStatus,
|
|
17633
|
-
|
|
17633
|
+
uy as F0TagTeam,
|
|
17634
17634
|
uu as F0Text,
|
|
17635
|
-
|
|
17636
|
-
|
|
17637
|
-
|
|
17638
|
-
|
|
17639
|
-
|
|
17640
|
-
|
|
17641
|
-
|
|
17635
|
+
fy as F0Thinking,
|
|
17636
|
+
yv as F0WizardForm,
|
|
17637
|
+
hy as FullscreenChatContext,
|
|
17638
|
+
my as GROUP_ID_SYMBOL,
|
|
17639
|
+
py as H1,
|
|
17640
|
+
gy as H2,
|
|
17641
|
+
vy as H3,
|
|
17642
17642
|
$g as HomeLayout,
|
|
17643
|
-
|
|
17644
|
-
|
|
17643
|
+
yy as Hr,
|
|
17644
|
+
by as Image,
|
|
17645
17645
|
Vg as Layout,
|
|
17646
|
-
|
|
17646
|
+
xy as Li,
|
|
17647
17647
|
Zg as LineChart,
|
|
17648
|
-
|
|
17649
|
-
|
|
17650
|
-
|
|
17648
|
+
wy as Ol,
|
|
17649
|
+
_y as OneFilterPicker,
|
|
17650
|
+
Cy as P,
|
|
17651
17651
|
qg as PieChart,
|
|
17652
|
-
|
|
17652
|
+
Ey as Pre,
|
|
17653
17653
|
Pd as PrivacyModeProvider,
|
|
17654
17654
|
Eg as ProductBlankslate,
|
|
17655
|
-
|
|
17656
|
-
|
|
17655
|
+
sb as ProductCard,
|
|
17656
|
+
Cv as ProductModal,
|
|
17657
17657
|
Ng as ProductWidget,
|
|
17658
17658
|
Xg as ProgressBarChart,
|
|
17659
17659
|
Hg as StandardLayout,
|
|
17660
|
-
|
|
17661
|
-
|
|
17662
|
-
|
|
17663
|
-
|
|
17664
|
-
|
|
17665
|
-
|
|
17666
|
-
|
|
17660
|
+
Sy as Strong,
|
|
17661
|
+
ky as Table,
|
|
17662
|
+
Dy as TableSimple,
|
|
17663
|
+
xv as Tag,
|
|
17664
|
+
Ny as TagCounter,
|
|
17665
|
+
Ry as Td,
|
|
17666
|
+
Ty as Th,
|
|
17667
17667
|
jg as TwoColumnLayout,
|
|
17668
|
-
|
|
17668
|
+
Ay as Ul,
|
|
17669
17669
|
Fo as UpsellRequestResponseDialog,
|
|
17670
|
-
|
|
17670
|
+
Ev as UpsellingBanner,
|
|
17671
17671
|
Io as UpsellingButton,
|
|
17672
|
-
|
|
17672
|
+
Sv as UpsellingPopover,
|
|
17673
17673
|
Kg as VerticalBarChart,
|
|
17674
|
-
|
|
17675
|
-
|
|
17674
|
+
vb as actionItemStatuses,
|
|
17675
|
+
yb as aiTranslations,
|
|
17676
17676
|
zg as avatarVariants,
|
|
17677
|
-
|
|
17677
|
+
Oy as buildTranslations,
|
|
17678
|
+
iv as buttonDropdownModes,
|
|
17678
17679
|
nv as buttonDropdownSizes,
|
|
17679
17680
|
rv as buttonDropdownVariants,
|
|
17680
17681
|
tv as buttonSizes,
|
|
17681
|
-
|
|
17682
|
-
|
|
17682
|
+
sv as buttonToggleSizes,
|
|
17683
|
+
ov as buttonToggleVariants,
|
|
17683
17684
|
ev as buttonVariants,
|
|
17684
|
-
|
|
17685
|
-
|
|
17686
|
-
|
|
17687
|
-
|
|
17685
|
+
My as cardImageFits,
|
|
17686
|
+
Ly as cardImageSizes,
|
|
17687
|
+
ob as createAtlaskitDriver,
|
|
17688
|
+
Fy as createDataSourceDefinition,
|
|
17688
17689
|
ou as createPageLayoutBlock,
|
|
17689
17690
|
au as createPageLayoutBlockGroup,
|
|
17690
|
-
|
|
17691
|
-
|
|
17692
|
-
|
|
17691
|
+
Dv as dataCollectionLocalStorageHandler,
|
|
17692
|
+
dv as datepickerSizes,
|
|
17693
|
+
_b as defaultTranslations,
|
|
17693
17694
|
Un as evaluateRenderIf,
|
|
17694
17695
|
at as experimental,
|
|
17695
|
-
|
|
17696
|
-
|
|
17697
|
-
|
|
17696
|
+
hv as f0FormField,
|
|
17697
|
+
Iy as f0MarkdownRenderers,
|
|
17698
|
+
Py as f0MarkdownRenderersSimple,
|
|
17698
17699
|
qt as generateAnchorId,
|
|
17699
|
-
|
|
17700
|
-
|
|
17701
|
-
|
|
17700
|
+
zy as getAnimationVariants,
|
|
17701
|
+
By as getDataSourcePaginationType,
|
|
17702
|
+
Vy as getEmojiLabel,
|
|
17702
17703
|
yr as getF0Config,
|
|
17703
|
-
|
|
17704
|
-
|
|
17704
|
+
pv as getSchemaDefinition,
|
|
17705
|
+
mv as hasF0Config,
|
|
17705
17706
|
Fm as inferFieldType,
|
|
17706
|
-
|
|
17707
|
-
|
|
17707
|
+
Hy as isInfiniteScrollPagination,
|
|
17708
|
+
jy as isPageBasedPagination,
|
|
17708
17709
|
Ee as isZodType,
|
|
17709
|
-
|
|
17710
|
-
|
|
17711
|
-
|
|
17712
|
-
|
|
17713
|
-
|
|
17714
|
-
|
|
17710
|
+
av as linkVariants,
|
|
17711
|
+
$y as modules,
|
|
17712
|
+
bb as oneIconSizes,
|
|
17713
|
+
ab as predefinedPresets,
|
|
17714
|
+
lb as selectSizes,
|
|
17715
|
+
lv as tagDotColors,
|
|
17715
17716
|
yt as unwrapZodSchema,
|
|
17716
|
-
|
|
17717
|
-
|
|
17718
|
-
|
|
17719
|
-
|
|
17720
|
-
|
|
17721
|
-
|
|
17722
|
-
|
|
17723
|
-
|
|
17724
|
-
|
|
17725
|
-
|
|
17717
|
+
Wy as useAiChat,
|
|
17718
|
+
xb as useAiChatTranslations,
|
|
17719
|
+
Gy as useData,
|
|
17720
|
+
Uy as useDataSource,
|
|
17721
|
+
Zy as useDefaultCopilotActions,
|
|
17722
|
+
cb as useDndEvents,
|
|
17723
|
+
db as useDraggable,
|
|
17724
|
+
ub as useDroppableList,
|
|
17725
|
+
qy as useEmojiConfetti,
|
|
17726
|
+
Ky as useF0Dialog,
|
|
17726
17727
|
Tl as useF0Form,
|
|
17727
|
-
|
|
17728
|
-
|
|
17729
|
-
|
|
17730
|
-
|
|
17731
|
-
|
|
17732
|
-
|
|
17728
|
+
vv as useF0FormDefinition,
|
|
17729
|
+
Xy as useGroups,
|
|
17730
|
+
Yy as useMessageSourcesAction,
|
|
17731
|
+
Jy as useOrchestratorThinkingAction,
|
|
17732
|
+
fb as usePrivacyMode,
|
|
17733
|
+
Qy as useReducedMotion,
|
|
17733
17734
|
El as useSchemaDefinition,
|
|
17734
|
-
|
|
17735
|
-
|
|
17735
|
+
eb as useSelectable,
|
|
17736
|
+
tb as useXRay,
|
|
17736
17737
|
ye as withDataTestId
|
|
17737
17738
|
};
|