@factorialco/f0-react 1.479.2 → 1.481.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/{F0AiChat-BgtCtQqu.js → F0AiChat-D7aK-SPb.js} +27220 -27195
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +11 -63
- package/dist/experimental.js +6 -7
- package/dist/f0.d.ts +11 -63
- package/dist/f0.js +10 -11
- package/dist/{index-Bi0YqTEB.js → index-BQFNwcIQ.js} +2154 -2084
- package/dist/{types-D9nsu4O-.js → types-CnynuKL1.js} +1 -1
- package/package.json +1 -1
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { l as t, k as e, F as r, a as o, C as i, b as n, m as F, n as u, d as A, I as c, g as C, c as m, h, e as l, u as d, j as I, i as f, f as T } from "./F0AiChat-
|
|
1
|
+
import { l as t, k as e, F as r, a as o, C as i, b as n, m as F, n as u, d as A, I as c, g as C, c as m, h, e as l, u as d, j as I, i as f, f as T } from "./F0AiChat-D7aK-SPb.js";
|
|
2
2
|
import { defaultTranslations as S } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as v, e as x, F as P, c as V, d as k, b as O, a as b, f as y, o as M, u as j } from "./types-
|
|
3
|
+
import { A as v, e as x, F as P, c as V, d as k, b as O, a as b, f as y, o as M, u as j } from "./types-CnynuKL1.js";
|
|
4
4
|
export {
|
|
5
5
|
v as AiChatTranslationsProvider,
|
|
6
6
|
t as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -82,10 +82,10 @@ import { ProgressBarCellValue } from './types/progressBar';
|
|
|
82
82
|
import { ProgressBarCellValue as ProgressBarCellValue_2 } from './experimental';
|
|
83
83
|
import { Props as Props_5 } from './types';
|
|
84
84
|
import { PropsWithChildren } from 'react';
|
|
85
|
+
import { RadarChartProps } from './RadarChart';
|
|
85
86
|
import * as React_2 from 'react';
|
|
86
87
|
import { ReactElement } from 'react';
|
|
87
88
|
import { ReactNode } from 'react';
|
|
88
|
-
import * as RechartsPrimitive from 'recharts';
|
|
89
89
|
import { Ref } from 'react';
|
|
90
90
|
import { RefAttributes } from 'react';
|
|
91
91
|
import { RefObject } from 'react';
|
|
@@ -1630,35 +1630,6 @@ declare interface ChartComputation {
|
|
|
1630
1630
|
limit?: number;
|
|
1631
1631
|
}
|
|
1632
1632
|
|
|
1633
|
-
declare type ChartConfig_3 = Record<string, ChartConfig_4[keyof ChartConfig_4]>;
|
|
1634
|
-
|
|
1635
|
-
declare type ChartConfig_4 = {
|
|
1636
|
-
[k in string]: {
|
|
1637
|
-
label?: React_2.ReactNode;
|
|
1638
|
-
icon?: React_2.ComponentType;
|
|
1639
|
-
} & ({
|
|
1640
|
-
color?: string;
|
|
1641
|
-
theme?: never;
|
|
1642
|
-
} | {
|
|
1643
|
-
color?: never;
|
|
1644
|
-
theme: Record<keyof typeof THEMES, string>;
|
|
1645
|
-
});
|
|
1646
|
-
};
|
|
1647
|
-
|
|
1648
|
-
declare const ChartContainer: React_2.ForwardRefExoticComponent<Omit<ChartContainerComponentProps, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
1649
|
-
|
|
1650
|
-
declare interface ChartContainerComponentProps extends React_2.ComponentProps<"div">, VariantProps<typeof variants_2> {
|
|
1651
|
-
config: ChartConfig_4;
|
|
1652
|
-
children: React_2.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
|
-
declare type ChartItem<K extends ChartConfig_3> = {
|
|
1656
|
-
label: string;
|
|
1657
|
-
values: {
|
|
1658
|
-
[key in keyof K]: number;
|
|
1659
|
-
};
|
|
1660
|
-
};
|
|
1661
|
-
|
|
1662
1633
|
/**
|
|
1663
1634
|
* @experimental This is an experimental component use it at your own risk
|
|
1664
1635
|
*/
|
|
@@ -4797,10 +4768,16 @@ declare type HeaderProps = {
|
|
|
4797
4768
|
oneSwitchAutoOpen?: boolean;
|
|
4798
4769
|
};
|
|
4799
4770
|
|
|
4800
|
-
declare type HeaderSecondaryAction =
|
|
4771
|
+
declare type HeaderSecondaryAction = HeaderSecondaryButtonAction | HeaderSecondaryDropdownAction;
|
|
4772
|
+
|
|
4773
|
+
declare type HeaderSecondaryButtonAction = SecondaryAction & {
|
|
4801
4774
|
hideLabel?: boolean;
|
|
4802
4775
|
};
|
|
4803
4776
|
|
|
4777
|
+
declare type HeaderSecondaryDropdownAction = PrimaryDropdownAction<string> & {
|
|
4778
|
+
variant?: "outline";
|
|
4779
|
+
};
|
|
4780
|
+
|
|
4804
4781
|
declare interface HeatmapComputation {
|
|
4805
4782
|
datasetId: string;
|
|
4806
4783
|
xAxis: string;
|
|
@@ -6548,23 +6525,9 @@ declare type Pulse = (typeof pulses)[number];
|
|
|
6548
6525
|
|
|
6549
6526
|
declare const pulses: readonly ["superNegative", "negative", "neutral", "positive", "superPositive"];
|
|
6550
6527
|
|
|
6551
|
-
export declare const RadarChart: <
|
|
6552
|
-
|
|
6553
|
-
} &
|
|
6554
|
-
ref?: ForwardedRef<HTMLDivElement>;
|
|
6555
|
-
}) => ReactElement | null;
|
|
6556
|
-
|
|
6557
|
-
export declare const _RadarChart: <K extends ChartConfig_3>({ data, dataConfig, scaleMin, scaleMax, aspect, dataTestId, }: RadarChartProps<K> & {
|
|
6558
|
-
dataTestId?: string;
|
|
6559
|
-
}, ref: ForwardedRef<HTMLDivElement>) => JSX_2.Element;
|
|
6560
|
-
|
|
6561
|
-
export declare type RadarChartProps<K extends ChartConfig_3> = {
|
|
6562
|
-
dataConfig: K;
|
|
6563
|
-
data: ChartItem<K>[];
|
|
6564
|
-
scaleMin?: number;
|
|
6565
|
-
scaleMax?: number;
|
|
6566
|
-
aspect?: ComponentProps<typeof ChartContainer>["aspect"];
|
|
6567
|
-
};
|
|
6528
|
+
export declare const RadarChart: WithDataTestIdReturnType_4<ForwardRefExoticComponent<Omit<RadarChartProps<ChartConfig_2> & {
|
|
6529
|
+
dataTestId?: string;
|
|
6530
|
+
} & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLElement | SVGElement>>>;
|
|
6568
6531
|
|
|
6569
6532
|
declare interface RadarComputation {
|
|
6570
6533
|
datasetId: string;
|
|
@@ -7418,11 +7381,6 @@ maxHeight?: number;
|
|
|
7418
7381
|
|
|
7419
7382
|
export declare type TextareaProps = Pick<ComponentProps<typeof Textarea_2>, "disabled" | "onChange" | "value" | "placeholder" | "rows" | "cols" | "label" | "labelIcon" | "icon" | "hideLabel" | "maxLength" | "clearable" | "onBlur" | "onFocus" | "name" | "status" | "hint" | "error" | "size" | "loading" | "required" | "maxHeight">;
|
|
7420
7383
|
|
|
7421
|
-
declare const THEMES: {
|
|
7422
|
-
readonly light: "";
|
|
7423
|
-
readonly dark: ".dark";
|
|
7424
|
-
};
|
|
7425
|
-
|
|
7426
7384
|
export declare type TOCItem<Depth extends 1 | 2 | 3 | 4 = 1> = BaseTOCItem & {
|
|
7427
7385
|
children?: NextDepth<Depth> extends never ? never : TOCItem<NextDepth<Depth>>[];
|
|
7428
7386
|
};
|
|
@@ -7794,16 +7752,6 @@ declare type Variant = (typeof statuses)[number];
|
|
|
7794
7752
|
|
|
7795
7753
|
declare const variants: readonly ["ai", "critical", "positive", "info", "warning"];
|
|
7796
7754
|
|
|
7797
|
-
declare const variants_2: (props?: ({
|
|
7798
|
-
aspect?: "small" | "square" | "wide" | undefined;
|
|
7799
|
-
} & ({
|
|
7800
|
-
class?: ClassValue;
|
|
7801
|
-
className?: never;
|
|
7802
|
-
} | {
|
|
7803
|
-
class?: never;
|
|
7804
|
-
className?: ClassValue;
|
|
7805
|
-
})) | undefined) => string;
|
|
7806
|
-
|
|
7807
7755
|
export declare interface Version {
|
|
7808
7756
|
id: string;
|
|
7809
7757
|
author: VersionAuthor;
|
package/dist/experimental.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { a9 as oa, aa as ca, ab as da, ac as ua, ad as Ft, ae as Te, af as fa, O as b, W as Z, P as pe, u as se, ag as ma, ah as ha, ai as ba, aj as pa, ak as ga, a5 as oe, al as xa, am as ht, an as rt, ao as Be, U as Ee, ap as va, aq as wa, ar as $, as as ya, at as Na, M as _e, au as ln, av as Ca, aw as ka, Q as B, ax as sn, a8 as E, ay as ve, az as Sa, aA as Ia, aB as Fa, aC as Aa, aD as La, aE as Ce, aF as on, aG as Ea, aH as ge, aI as $e, aJ as _a, aK as bt, n as cn, aL as Ne, aM as Oa, aN as dn, a6 as ne, aO as H, R as un, aP as fn, aQ as Ta, aR as mn, aS as me, a7 as ee, aT as Da, aU as za, aV as Pa, aW as Ra, X as be, aX as Ge, aY as Ba, aZ as $a, a_ as Wa, a$ as Ma, b0 as He, b1 as hn, b2 as ja, b3 as Va, b4 as Ga, b5 as We, b6 as Ha, b7 as Ua, b8 as Ka, b9 as qa, ba as Ya, bb as Za, bc as Xa, bd as Ja, be as Qa, bf as er, bg as lt, bh as it, bi as bn, bj as tr, bk as nr, bl as pn, bm as ar, bn as rr, T as Ue, bo as pt, bp as gn, bq as lr, br as xn, bs as ir, bt as sr, bu as or, bv as Le, bw as cr, bx as De, by as At, bz as st, bA as dr, bB as ur, a as fr, c as mr, bC as hr, bD as vn, bE as br, bF as pr, F as gr, bG as wn, _ as xr, bH as yn, bI as vr, bJ as Lt, bK as wr, bL as yr, bM as Nr, bN as Cr, bO as Nn, bP as kr, bQ as Sr, bR as Ir, bS as Fr, bT as Ar, Y as Cn, bU as ue, bV as kn, bW as gt, bX as xt, bY as vt, bZ as Sn, b_ as wt, b$ as In, $ as Fn, c0 as Lr, c1 as Er, c2 as _r, c3 as Or, c4 as Tr, c5 as Dr, c6 as zr, c7 as Pr, c8 as Rr, c9 as Br, ca as $r, cb as Et, cc as _t, cd as Ot, ce as Wr, cf as Mr, cg as jr, ch as Vr, ci as An, cj as Gr, ck as Hr, cl as Ur } from "./F0AiChat-
|
|
2
|
-
import { cG as Ac, cF as Lc, co as Ec, cS as _c, cz as Oc, cA as Tc, cn as Dc, cC as zc, cp as Pc, d2 as Rc, d0 as Bc, cq as $c, cD as Wc, cE as Mc, cB as jc, cr as Vc, cO as Gc, cP as Hc, cT as Uc, c_ as Kc, c$ as qc, cx as Yc, d1 as Zc, cy as Xc, cs as Jc, cI as Qc, cH as ed, ct as td, cu as nd, cv as ad, cQ as rd, d3 as ld, cm as id, cR as sd, cV as od, cW as cd, cN as dd, cK as ud, cM as fd, cJ as md, cw as hd, cL as bd, cX as pd, cY as gd, cU as xd, cZ as vd } from "./F0AiChat-
|
|
1
|
+
import { a9 as oa, aa as ca, ab as da, ac as ua, ad as Ft, ae as Te, af as fa, O as b, W as Z, P as pe, u as se, ag as ma, ah as ha, ai as ba, aj as pa, ak as ga, a5 as oe, al as xa, am as ht, an as rt, ao as Be, U as Ee, ap as va, aq as wa, ar as $, as as ya, at as Na, M as _e, au as ln, av as Ca, aw as ka, Q as B, ax as sn, a8 as E, ay as ve, az as Sa, aA as Ia, aB as Fa, aC as Aa, aD as La, aE as Ce, aF as on, aG as Ea, aH as ge, aI as $e, aJ as _a, aK as bt, n as cn, aL as Ne, aM as Oa, aN as dn, a6 as ne, aO as H, R as un, aP as fn, aQ as Ta, aR as mn, aS as me, a7 as ee, aT as Da, aU as za, aV as Pa, aW as Ra, X as be, aX as Ge, aY as Ba, aZ as $a, a_ as Wa, a$ as Ma, b0 as He, b1 as hn, b2 as ja, b3 as Va, b4 as Ga, b5 as We, b6 as Ha, b7 as Ua, b8 as Ka, b9 as qa, ba as Ya, bb as Za, bc as Xa, bd as Ja, be as Qa, bf as er, bg as lt, bh as it, bi as bn, bj as tr, bk as nr, bl as pn, bm as ar, bn as rr, T as Ue, bo as pt, bp as gn, bq as lr, br as xn, bs as ir, bt as sr, bu as or, bv as Le, bw as cr, bx as De, by as At, bz as st, bA as dr, bB as ur, a as fr, c as mr, bC as hr, bD as vn, bE as br, bF as pr, F as gr, bG as wn, _ as xr, bH as yn, bI as vr, bJ as Lt, bK as wr, bL as yr, bM as Nr, bN as Cr, bO as Nn, bP as kr, bQ as Sr, bR as Ir, bS as Fr, bT as Ar, Y as Cn, bU as ue, bV as kn, bW as gt, bX as xt, bY as vt, bZ as Sn, b_ as wt, b$ as In, $ as Fn, c0 as Lr, c1 as Er, c2 as _r, c3 as Or, c4 as Tr, c5 as Dr, c6 as zr, c7 as Pr, c8 as Rr, c9 as Br, ca as $r, cb as Et, cc as _t, cd as Ot, ce as Wr, cf as Mr, cg as jr, ch as Vr, ci as An, cj as Gr, ck as Hr, cl as Ur } from "./F0AiChat-D7aK-SPb.js";
|
|
2
|
+
import { cG as Ac, cF as Lc, co as Ec, cS as _c, cz as Oc, cA as Tc, cn as Dc, cC as zc, cp as Pc, d2 as Rc, d0 as Bc, cq as $c, cD as Wc, cE as Mc, cB as jc, cr as Vc, cO as Gc, cP as Hc, cT as Uc, c_ as Kc, c$ as qc, cx as Yc, d1 as Zc, cy as Xc, cs as Jc, cI as Qc, cH as ed, ct as td, cu as nd, cv as ad, cQ as rd, d3 as ld, cm as id, cR as sd, cV as od, cW as cd, cN as dd, cK as ud, cM as fd, cJ as md, cw as hd, cL as bd, cX as pd, cY as gd, cU as xd, cZ as vd } from "./F0AiChat-D7aK-SPb.js";
|
|
3
3
|
import { jsx as e, jsxs as o, Fragment as U } from "react/jsx-runtime";
|
|
4
4
|
import re, { forwardRef as j, useRef as V, useTransition as Kr, useState as _, useLayoutEffect as Ln, useId as qr, useContext as Ke, createContext as yt, useEffect as W, useCallback as Q, useMemo as K, Fragment as Yr, isValidElement as Zr, cloneElement as En, Children as _n } from "react";
|
|
5
|
-
import { C as Xr, P as Jr, g as On, c as Qr, F as ot, f as el, a as tl, A as nl, B as al, L as rl, b as ll, V as il, d as sl, e as Tt, h as ol, i as cl } from "./index-
|
|
6
|
-
import { l as yd, m as Nd, j as Cd, n as kd, s as Sd, D as Id, k as Fd, o as Ad, v as Ld, w as Ed, N as _d, x as Od, p as Td, r as Dd, R as zd, q as Pd,
|
|
5
|
+
import { C as Xr, P as Jr, g as On, c as Qr, F as ot, f as el, a as tl, A as nl, B as al, L as rl, b as ll, V as il, d as sl, e as Tt, h as ol, i as cl } from "./index-BQFNwcIQ.js";
|
|
6
|
+
import { l as yd, m as Nd, j as Cd, n as kd, s as Sd, D as Id, k as Fd, o as Ad, v as Ld, w as Ed, N as _d, x as Od, p as Td, r as Dd, R as zd, q as Pd, u as Rd, t as Bd } from "./index-BQFNwcIQ.js";
|
|
7
7
|
const dl = oa("Search", [
|
|
8
8
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
9
9
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
|
@@ -7509,7 +7509,6 @@ export {
|
|
|
7509
7509
|
bc as WidgetSimpleList,
|
|
7510
7510
|
mt as WidgetSimpleListItem,
|
|
7511
7511
|
yc as WidgetStrip,
|
|
7512
|
-
Rd as _RadarChart,
|
|
7513
7512
|
id as actionBarStatuses,
|
|
7514
7513
|
sd as chipVariants,
|
|
7515
7514
|
od as downloadAsCSV,
|
|
@@ -7519,9 +7518,9 @@ export {
|
|
|
7519
7518
|
fd as getGranularitySimpleDefinition,
|
|
7520
7519
|
md as granularityDefinitions,
|
|
7521
7520
|
hd as modules,
|
|
7522
|
-
|
|
7521
|
+
Rd as predefinedPresets,
|
|
7523
7522
|
bd as rangeSeparator,
|
|
7524
|
-
|
|
7523
|
+
Bd as selectSizes,
|
|
7525
7524
|
qe as useAiPromotionChat,
|
|
7526
7525
|
pd as useDataCollectionData,
|
|
7527
7526
|
gd as useDataCollectionSource,
|
package/dist/f0.d.ts
CHANGED
|
@@ -117,10 +117,10 @@ import { PopoverContentProps } from '@radix-ui/react-popover';
|
|
|
117
117
|
import { ProgressBarCellValue } from './f0';
|
|
118
118
|
import { ProgressBarCellValue as ProgressBarCellValue_2 } from './types/progressBar';
|
|
119
119
|
import { Props as Props_2 } from './types';
|
|
120
|
+
import { RadarChartProps } from './RadarChart';
|
|
120
121
|
import * as React_2 from 'react';
|
|
121
122
|
import { ReactElement } from 'react';
|
|
122
123
|
import { ReactNode } from 'react';
|
|
123
|
-
import * as RechartsPrimitive from 'recharts';
|
|
124
124
|
import { Ref } from 'react';
|
|
125
125
|
import { RefAttributes } from 'react';
|
|
126
126
|
import { RefObject } from 'react';
|
|
@@ -2274,21 +2274,6 @@ declare interface ChartComputation {
|
|
|
2274
2274
|
limit?: number;
|
|
2275
2275
|
}
|
|
2276
2276
|
|
|
2277
|
-
declare type ChartConfig_3 = Record<string, ChartConfig_4[keyof ChartConfig_4]>;
|
|
2278
|
-
|
|
2279
|
-
declare type ChartConfig_4 = {
|
|
2280
|
-
[k in string]: {
|
|
2281
|
-
label?: React_2.ReactNode;
|
|
2282
|
-
icon?: React_2.ComponentType;
|
|
2283
|
-
} & ({
|
|
2284
|
-
color?: string;
|
|
2285
|
-
theme?: never;
|
|
2286
|
-
} | {
|
|
2287
|
-
color?: never;
|
|
2288
|
-
theme: Record<keyof typeof THEMES, string>;
|
|
2289
|
-
});
|
|
2290
|
-
};
|
|
2291
|
-
|
|
2292
2277
|
declare interface ChartConfigBase {
|
|
2293
2278
|
/** Show the legend below the chart. @default true */
|
|
2294
2279
|
showLegend?: boolean;
|
|
@@ -2302,20 +2287,6 @@ declare interface ChartConfigBase {
|
|
|
2302
2287
|
categoryFormatter?: (value: string) => string;
|
|
2303
2288
|
}
|
|
2304
2289
|
|
|
2305
|
-
declare const ChartContainer: React_2.ForwardRefExoticComponent<Omit<ChartContainerComponentProps, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
2306
|
-
|
|
2307
|
-
declare interface ChartContainerComponentProps extends React_2.ComponentProps<"div">, VariantProps<typeof variants> {
|
|
2308
|
-
config: ChartConfig_4;
|
|
2309
|
-
children: React_2.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
2310
|
-
}
|
|
2311
|
-
|
|
2312
|
-
declare type ChartItem<K extends ChartConfig_3> = {
|
|
2313
|
-
label: string;
|
|
2314
|
-
values: {
|
|
2315
|
-
[key in keyof K]: number;
|
|
2316
|
-
};
|
|
2317
|
-
};
|
|
2318
|
-
|
|
2319
2290
|
/**
|
|
2320
2291
|
* Complete chart theme — everything a chart type needs to render correctly.
|
|
2321
2292
|
*
|
|
@@ -9592,10 +9563,16 @@ export declare type GroupRecord<RecordType> = {
|
|
|
9592
9563
|
*/
|
|
9593
9564
|
export declare function hasF0Config(schema: ZodTypeAny): boolean;
|
|
9594
9565
|
|
|
9595
|
-
declare type HeaderSecondaryAction =
|
|
9566
|
+
declare type HeaderSecondaryAction = HeaderSecondaryButtonAction | HeaderSecondaryDropdownAction;
|
|
9567
|
+
|
|
9568
|
+
declare type HeaderSecondaryButtonAction = SecondaryAction & {
|
|
9596
9569
|
hideLabel?: boolean;
|
|
9597
9570
|
};
|
|
9598
9571
|
|
|
9572
|
+
declare type HeaderSecondaryDropdownAction = PrimaryDropdownAction<string> & {
|
|
9573
|
+
variant?: "outline";
|
|
9574
|
+
};
|
|
9575
|
+
|
|
9599
9576
|
declare type HeadingTags = (typeof headingTags)[number];
|
|
9600
9577
|
|
|
9601
9578
|
declare const headingTags: readonly ["h1", "h2", "h3", "h4", "h5", "h6"];
|
|
@@ -11495,15 +11472,9 @@ declare type QuestionPropsToOmit = "onAction" | "onChange" | "onAddNewElement";
|
|
|
11495
11472
|
|
|
11496
11473
|
export declare type QuestionType = "rating" | "select" | "multi-select" | "dropdown-single" | "dropdown-multi" | "text" | "longText" | "numeric" | "link" | "date" | "file" | "checkbox";
|
|
11497
11474
|
|
|
11498
|
-
export declare const RadarChart: <
|
|
11499
|
-
|
|
11500
|
-
} &
|
|
11501
|
-
ref?: ForwardedRef<HTMLDivElement>;
|
|
11502
|
-
}) => ReactElement | null;
|
|
11503
|
-
|
|
11504
|
-
export declare const _RadarChart: <K extends ChartConfig_3>({ data, dataConfig, scaleMin, scaleMax, aspect, dataTestId, }: RadarChartProps<K> & {
|
|
11505
|
-
dataTestId?: string;
|
|
11506
|
-
}, ref: ForwardedRef<HTMLDivElement>) => JSX_2.Element;
|
|
11475
|
+
export declare const RadarChart: WithDataTestIdReturnType_5<ForwardRefExoticComponent<Omit<RadarChartProps<ChartConfig_2> & {
|
|
11476
|
+
dataTestId?: string;
|
|
11477
|
+
} & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLElement | SVGElement>>>;
|
|
11507
11478
|
|
|
11508
11479
|
export declare interface RadarChartConfig {
|
|
11509
11480
|
type: "radar";
|
|
@@ -11517,14 +11488,6 @@ export declare interface RadarChartConfig {
|
|
|
11517
11488
|
valueFormatter?: (value: number) => string;
|
|
11518
11489
|
}
|
|
11519
11490
|
|
|
11520
|
-
export declare type RadarChartProps<K extends ChartConfig_3> = {
|
|
11521
|
-
dataConfig: K;
|
|
11522
|
-
data: ChartItem<K>[];
|
|
11523
|
-
scaleMin?: number;
|
|
11524
|
-
scaleMax?: number;
|
|
11525
|
-
aspect?: ComponentProps<typeof ChartContainer>["aspect"];
|
|
11526
|
-
};
|
|
11527
|
-
|
|
11528
11491
|
/**
|
|
11529
11492
|
* Skeleton for radar chart content area.
|
|
11530
11493
|
*
|
|
@@ -12764,11 +12727,6 @@ declare const textVariants: (props?: ({
|
|
|
12764
12727
|
className?: ClassValue;
|
|
12765
12728
|
})) | undefined) => string;
|
|
12766
12729
|
|
|
12767
|
-
declare const THEMES: {
|
|
12768
|
-
readonly light: "";
|
|
12769
|
-
readonly dark: ".dark";
|
|
12770
|
-
};
|
|
12771
|
-
|
|
12772
12730
|
export declare type TimelineRowStatus = (typeof timelineRowStatuses)[number];
|
|
12773
12731
|
|
|
12774
12732
|
export declare const timelineRowStatuses: readonly ["completed", "in-progress", "not-started"];
|
|
@@ -13682,16 +13640,6 @@ declare type ValueDisplayVisualizationType = "table" | "card" | "list" | (string
|
|
|
13682
13640
|
|
|
13683
13641
|
export declare type Variant = (typeof statuses)[number];
|
|
13684
13642
|
|
|
13685
|
-
declare const variants: (props?: ({
|
|
13686
|
-
aspect?: "small" | "square" | "wide" | undefined;
|
|
13687
|
-
} & ({
|
|
13688
|
-
class?: ClassValue;
|
|
13689
|
-
className?: never;
|
|
13690
|
-
} | {
|
|
13691
|
-
class?: never;
|
|
13692
|
-
className?: ClassValue;
|
|
13693
|
-
})) | undefined) => string;
|
|
13694
|
-
|
|
13695
13643
|
export declare const VerticalBarChart: WithDataTestIdReturnType_5<ForwardRefExoticComponent<Omit<ChartPropsBase<ChartConfig_2> & {
|
|
13696
13644
|
label?: boolean;
|
|
13697
13645
|
showRatio?: boolean;
|
package/dist/f0.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { fB as Or, a6 as se, bU as Fn, O as P, P as mt, fC as Mr, W as xt, dH as Bo, aS as Yi, fD as Po, a7 as zr, a8 as de, u as oe, ar as fe, fs as Vt, U as Ho, ac as Wo, M as Ir, fE as hn, aO as Oe, aL as mi, fF as qo, fG as Go, fH as $o, fI as Ji, a0 as jo, fJ as Uo, fK as Br, fL as Vo, bd as gi, be as pi, a5 as An, bf as vi, aX as Pr, cS as fn, fM as Hr, fN as Qo, eh as Ko, fO as Zi, ef as Xo, fP as Yo, fQ as Ct, fR as Qt, fS as Jo, fT as Wr, fU as Zo, fV as ea, fW as Ln, fX as ta, fY as na, R as He, b0 as ia, d5 as ai, d4 as qr, fZ as ra, f_ as bi, cn as sa, f$ as oa, g0 as Gr, g1 as On, g2 as aa, g3 as la, aI as yi, Q as Ce, aJ as ca, aK as mn, ce as da, g4 as ua, aR as Mn, fo as xi, g5 as $r, g6 as ha, g7 as fa, g8 as ma, g9 as ga, cC as pa, m as va, dr as ba, aq as jr, f6 as gt, ga as Ur, f4 as Vr, gb as gn, gc as Qr, ch as Kr, gd as Xr, as as wi, at as Ci, ge as Si, aw as Ei, aB as De, gf as Ni, aD as wt, gg as Lt, gh as Ot, av as Mt, gi as zt, gj as ya, gk as en, gl as Yr, gm as pn, bM as Ht, gn as _e, cs as xa, go as Jr, gp as wa, gq as vn, cr as Ca, cq as Sa, gr as Ea, gs as Na, bO as zn, aE as In, gt as Zr, bJ as _i, bP as Di, bc as _a, gu as Ae, gv as Da, gw as Ra, gx as es, gy as Bn, gz as ka, gA as Ta, cx as ts, cj as ns, gB as Fa, gC as Aa, gD as La, gE as Oa, bp as is, bv as Ma, fv as za, fw as Ia, fy as Ba, gF as rs, bW as Pa, b_ as Ha, gG as er, c5 as Wa, gH as ss, gI as qa, gJ as Ga } from "./F0AiChat-D7aK-SPb.js";
|
|
2
|
+
import { ho as Mf, gP as zf, co as If, l as Bf, gN as Pf, hC as Hf, bo as Wf, k as qf, F as Gf, a as $f, C as jf, hf as Uf, b as Vf, h0 as Qf, bN as Kf, c7 as Xf, _ as Yf, c8 as Jf, gL as Zf, bh as em, Y as tm, X as nm, Z as im, b3 as rm, gW as sm, g_ as om, gM as am, g$ as lm, h1 as cm, h3 as dm, hH as um, bx as hm, n as fm, hz as mm, b5 as gm, $ as pm, hj as vm, bB as bm, hk as ym, hm as xm, hn as wm, d2 as Cm, d0 as Sm, d as Em, gQ as Nm, hp as _m, gR as Dm, gS as Rm, gT as km, cO as Tm, cP as Fm, gK as Am, gU as Lm, hG as Om, gV as Mm, bu as zm, d1 as Im, hl as Bm, cQ as Pm, cm as Hm, hI as Wm, gX as qm, gY as Gm, gZ as $m, gO as jm, cR as Um, hB as Vm, hu as Qm, hh as Km, h8 as Xm, h7 as Ym, h6 as Jm, he as Zm, hx as eg, g as tg, ht as ng, bs as ig, cN as rg, cK as sg, cM as og, hd as ag, cJ as lg, h9 as cg, hs as dg, hr as ug, ha as hg, cw as fg, cL as mg, h4 as gg, h5 as pg, hb as vg, c as bg, hq as yg, hv as xg, h as wg, hD as Cg, hE as Sg, hF as Eg, bq as Ng, hg as _g, h2 as Dg, hi as Rg, e as kg, hA as Tg, hw as Fg, j as Ag, i as Lg, bV as Og, T as Mg, hc as zg, hy as Ig, f as Bg, hJ as Pg } from "./F0AiChat-D7aK-SPb.js";
|
|
3
3
|
import { jsx as l, jsxs as C, Fragment as we } from "react/jsx-runtime";
|
|
4
4
|
import ae, { forwardRef as We, useRef as W, useImperativeHandle as $a, Children as bn, createContext as Ke, useContext as Re, useState as j, useMemo as B, useEffect as V, useCallback as I, useLayoutEffect as li, createElement as tn, isValidElement as os, Fragment as ja, memo as as, useReducer as Ua, cloneElement as Va, useId as ls } from "react";
|
|
5
|
-
import { g as Qa, h as Ka } from "./types-
|
|
6
|
-
import { A as Wg, e as qg, F as Gg, c as $g, d as jg, b as Ug, a as Vg, f as Qg, o as Kg, u as Xg } from "./types-
|
|
5
|
+
import { g as Qa, h as Ka } from "./types-CnynuKL1.js";
|
|
6
|
+
import { A as Wg, e as qg, F as Gg, c as $g, d as jg, b as Ug, a as Vg, f as Qg, o as Kg, u as Xg } from "./types-CnynuKL1.js";
|
|
7
7
|
import { createPortal as cs, unstable_batchedUpdates as nn } from "react-dom";
|
|
8
|
-
import { C as Xa, D as Ya, y as Ja, j as Za } from "./index-
|
|
9
|
-
import { l as Jg, m as Zg, n as ep, s as tp, F as np, o as ip, v as rp, w as sp, N as op, x as ap, p as lp, P as cp, r as dp, R as up, q as hp,
|
|
10
|
-
import { defaultTranslations as
|
|
8
|
+
import { C as Xa, D as Ya, y as Ja, j as Za } from "./index-BQFNwcIQ.js";
|
|
9
|
+
import { l as Jg, m as Zg, n as ep, s as tp, F as np, o as ip, v as rp, w as sp, N as op, x as ap, p as lp, P as cp, r as dp, R as up, q as hp, u as fp, t as mp } from "./index-BQFNwcIQ.js";
|
|
10
|
+
import { defaultTranslations as pp } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const el = {
|
|
12
12
|
xs: 1,
|
|
13
13
|
sm: 2,
|
|
@@ -15080,7 +15080,6 @@ export {
|
|
|
15080
15080
|
Tf as UpsellingPopover,
|
|
15081
15081
|
hp as VerticalBarChart,
|
|
15082
15082
|
Pm as WeekStartDay,
|
|
15083
|
-
fp as _RadarChart,
|
|
15084
15083
|
Hm as actionBarStatuses,
|
|
15085
15084
|
Ug as actionItemStatuses,
|
|
15086
15085
|
Vg as aiTranslations,
|
|
@@ -15109,7 +15108,7 @@ export {
|
|
|
15109
15108
|
wl as createPageLayoutBlockGroup,
|
|
15110
15109
|
Af as dataCollectionLocalStorageHandler,
|
|
15111
15110
|
mf as datepickerSizes,
|
|
15112
|
-
|
|
15111
|
+
pp as defaultTranslations,
|
|
15113
15112
|
Km as defineAvailableForm,
|
|
15114
15113
|
Yd as describeFormSchema,
|
|
15115
15114
|
Xm as durationInputSizes,
|
|
@@ -15139,12 +15138,12 @@ export {
|
|
|
15139
15138
|
df as linkVariants,
|
|
15140
15139
|
fg as modules,
|
|
15141
15140
|
Kg as oneIconSizes,
|
|
15142
|
-
|
|
15141
|
+
fp as predefinedPresets,
|
|
15143
15142
|
mg as rangeSeparator,
|
|
15144
15143
|
Nr as reconstructElements,
|
|
15145
15144
|
gg as secondsToFields,
|
|
15146
15145
|
pg as secondsToVisibleFields,
|
|
15147
|
-
|
|
15146
|
+
mp as selectSizes,
|
|
15148
15147
|
nf as tagDotColors,
|
|
15149
15148
|
wf as timelineRowStatuses,
|
|
15150
15149
|
vg as unwrapZodSchema,
|