@factorialco/f0-react 3.6.0 → 3.7.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/{F0CanvasPanel-DvbRRItR.js → F0CanvasPanel-CiR0Puvp.js} +15992 -15811
- package/dist/ai.d.ts +7 -32
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +177 -40
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +156 -33
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +7 -32
- package/dist/i18n-provider-defaults.js +9 -34
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-CLdeCKIl.js → useChatHistory-DYxggHJX.js} +1644 -1784
- package/dist/{useDataCollectionSource-DBWuY_n4.js → useDataCollectionSource-CL96mQHh.js} +28467 -19651
- package/dist/useDataCollectionSource.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1786,6 +1786,16 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
|
|
|
1786
1786
|
* The aria-label of the button if not provided title or label will be used.
|
|
1787
1787
|
*/
|
|
1788
1788
|
"aria-label"?: string;
|
|
1789
|
+
/**
|
|
1790
|
+
* Forwarded to the underlying button. Useful for buttons that toggle an
|
|
1791
|
+
* expandable region (e.g. a tree/graph expander).
|
|
1792
|
+
*/
|
|
1793
|
+
"aria-expanded"?: boolean;
|
|
1794
|
+
/**
|
|
1795
|
+
* Forwarded to the underlying button. Use `-1` to take the button out of the
|
|
1796
|
+
* tab order (e.g. when a parent manages focus via roving tabindex).
|
|
1797
|
+
*/
|
|
1798
|
+
tabIndex?: number;
|
|
1789
1799
|
/**
|
|
1790
1800
|
* The variant of the button.
|
|
1791
1801
|
*/
|
|
@@ -2265,7 +2275,8 @@ declare type CardInternalProps_2 = F0AiInsightCardProps & {
|
|
|
2265
2275
|
};
|
|
2266
2276
|
|
|
2267
2277
|
declare type CardMetadata = {
|
|
2268
|
-
icon
|
|
2278
|
+
/** Leading icon. Optional — when omitted the row renders just the value. */
|
|
2279
|
+
icon?: IconType;
|
|
2269
2280
|
property: Exclude<CardMetadataProperty, {
|
|
2270
2281
|
type: "file";
|
|
2271
2282
|
}>;
|
|
@@ -3055,6 +3066,7 @@ declare type CollectionVisualizations<Record extends RecordType, Filters extends
|
|
|
3055
3066
|
list: VisualizacionTypeDefinition<ListCollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping>>;
|
|
3056
3067
|
card: VisualizacionTypeDefinition<CardCollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping>>;
|
|
3057
3068
|
kanban: VisualizacionTypeDefinition<KanbanCollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping>>;
|
|
3069
|
+
graph: VisualizacionTypeDefinition<GraphCollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping>, GraphVisualizationSettings>;
|
|
3058
3070
|
};
|
|
3059
3071
|
|
|
3060
3072
|
declare const collectionVisualizations: CollectionVisualizations<RecordType, FiltersDefinition, SortingsDefinition, SummariesDefinition, ItemActionsDefinition<RecordType>, NavigationFiltersDefinition, GroupingDefinition<RecordType>>;
|
|
@@ -3750,6 +3762,8 @@ declare type DataCollectionSourceDefinition<R extends RecordType = RecordType, F
|
|
|
3750
3762
|
itemPreFilter?: (item: R) => boolean;
|
|
3751
3763
|
/** Lanes configuration */
|
|
3752
3764
|
lanes?: ReadonlyArray<Lane<Filters>>;
|
|
3765
|
+
/** Rich search preview shown in the shared header search (all visualizations). */
|
|
3766
|
+
searchPreview?: SearchPreview<R>;
|
|
3753
3767
|
};
|
|
3754
3768
|
|
|
3755
3769
|
/**
|
|
@@ -4459,16 +4473,18 @@ export declare const defaultTranslations: {
|
|
|
4459
4473
|
readonly cancel: "Cancel";
|
|
4460
4474
|
};
|
|
4461
4475
|
readonly visualizations: {
|
|
4462
|
-
readonly table: "Table
|
|
4463
|
-
readonly editableTable: "Editable table
|
|
4464
|
-
readonly card: "Card
|
|
4465
|
-
readonly list: "List
|
|
4466
|
-
readonly kanban: "Kanban
|
|
4476
|
+
readonly table: "Table";
|
|
4477
|
+
readonly editableTable: "Editable table";
|
|
4478
|
+
readonly card: "Card";
|
|
4479
|
+
readonly list: "List";
|
|
4480
|
+
readonly kanban: "Kanban";
|
|
4481
|
+
readonly graph: "Graph";
|
|
4467
4482
|
readonly pagination: {
|
|
4468
4483
|
readonly of: "of";
|
|
4469
4484
|
};
|
|
4470
4485
|
readonly settings: "{{visualizationName}} settings";
|
|
4471
4486
|
readonly reset: "Reset to default";
|
|
4487
|
+
readonly viewSelectorLabel: "Select view";
|
|
4472
4488
|
};
|
|
4473
4489
|
readonly table: {
|
|
4474
4490
|
readonly settings: {
|
|
@@ -4979,33 +4995,6 @@ export declare const defaultTranslations: {
|
|
|
4979
4995
|
readonly zoomIn: "Zoom in";
|
|
4980
4996
|
readonly zoomOut: "Zoom out";
|
|
4981
4997
|
readonly navigation: "Graph navigation";
|
|
4982
|
-
readonly metadataSettings: "Metadata visibility";
|
|
4983
|
-
readonly tagTypeLabels: {
|
|
4984
|
-
readonly person: "People";
|
|
4985
|
-
readonly team: "Teams";
|
|
4986
|
-
readonly company: "Companies";
|
|
4987
|
-
readonly status: "Statuses";
|
|
4988
|
-
readonly alert: "Alerts";
|
|
4989
|
-
readonly balance: "Balances";
|
|
4990
|
-
readonly dot: "Tags";
|
|
4991
|
-
readonly raw: "Tags";
|
|
4992
|
-
};
|
|
4993
|
-
};
|
|
4994
|
-
readonly search: {
|
|
4995
|
-
readonly noResults: "No results";
|
|
4996
|
-
};
|
|
4997
|
-
readonly detailPanel: {
|
|
4998
|
-
readonly details: "Details";
|
|
4999
|
-
readonly moreActions: "More actions";
|
|
5000
|
-
readonly resize: "Resize detail panel";
|
|
5001
|
-
};
|
|
5002
|
-
readonly expander: {
|
|
5003
|
-
readonly collapse: "Collapse {{count}} items";
|
|
5004
|
-
readonly expand: "Expand {{count}} items";
|
|
5005
|
-
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
5006
|
-
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
5007
|
-
readonly collapseWithParent: "Collapse {{parent}}";
|
|
5008
|
-
readonly collapseDefault: "Collapse children";
|
|
5009
4998
|
};
|
|
5010
4999
|
};
|
|
5011
5000
|
readonly wizard: {
|
|
@@ -9447,6 +9436,9 @@ export declare interface F0FormValidationResult {
|
|
|
9447
9436
|
rootError?: string;
|
|
9448
9437
|
}
|
|
9449
9438
|
|
|
9439
|
+
/** Tag types that can be rendered in a node's metadata row. */
|
|
9440
|
+
declare type F0GraphNodeTagType = TagVariant["type"];
|
|
9441
|
+
|
|
9450
9442
|
export declare const F0GridStack: WithDataTestIdReturnType_7< {
|
|
9451
9443
|
({ options, widgets, onChange, className, static: isStatic, forcePositionSync, }: F0GridStackProps_2): JSX_2.Element;
|
|
9452
9444
|
displayName: string;
|
|
@@ -11483,6 +11475,97 @@ export declare const granularityDefinitions: {
|
|
|
11483
11475
|
|
|
11484
11476
|
export declare type GranularityDefinitionSimple = Pick<GranularityDefinition, "toRangeString" | "toString">;
|
|
11485
11477
|
|
|
11478
|
+
declare type GraphCollectionProps<Record extends RecordType, Filters extends FiltersDefinition, Sortings extends SortingsDefinition, Summaries extends SummariesDefinition, ItemActions extends ItemActionsDefinition<Record>, NavigationFilters extends NavigationFiltersDefinition, Grouping extends GroupingDefinition<Record>> = CollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping, GraphVisualizationOptions<Record, Filters, Sortings>>;
|
|
11479
|
+
|
|
11480
|
+
/**
|
|
11481
|
+
* Configuration for the "graph" visualization (org-chart style).
|
|
11482
|
+
*
|
|
11483
|
+
* The hierarchy is fetched on demand from the same `dataAdapter` of the source:
|
|
11484
|
+
* `childrenFilters(parentId)` returns the filter that the adapter understands as
|
|
11485
|
+
* "the direct children of parentId" (`null` = the roots). Children are loaded
|
|
11486
|
+
* when a node is expanded.
|
|
11487
|
+
*/
|
|
11488
|
+
declare type GraphVisualizationOptions<R extends RecordType, Filters extends FiltersDefinition, _Sortings extends SortingsDefinition> = {
|
|
11489
|
+
/** Primary line of text for a node. */
|
|
11490
|
+
title: (record: R) => string;
|
|
11491
|
+
/** Secondary line of text for a node. */
|
|
11492
|
+
subtitle?: (record: R) => string;
|
|
11493
|
+
/** Avatar shown on the leading side of the node pill. */
|
|
11494
|
+
avatar?: (record: R) => AvatarVariant;
|
|
11495
|
+
/** Tags rendered in the node metadata row. */
|
|
11496
|
+
tags?: (record: R) => TagVariant[];
|
|
11497
|
+
/**
|
|
11498
|
+
* Tag types present on the nodes. When provided, the controls bar gains a
|
|
11499
|
+
* toggle to show/hide each metadata type (like configuring table columns).
|
|
11500
|
+
*/
|
|
11501
|
+
nodeTagTypes?: ReadonlyArray<F0GraphNodeTagType>;
|
|
11502
|
+
/** Friendly labels per tag type, shown in the metadata visibility toggle. */
|
|
11503
|
+
nodeTagTypeLabels?: Partial<Record<F0GraphNodeTagType, string>>;
|
|
11504
|
+
/** Tag types visible by default. Defaults to all of `nodeTagTypes`. */
|
|
11505
|
+
defaultVisibleTagTypes?: ReadonlyArray<F0GraphNodeTagType>;
|
|
11506
|
+
/** Tag types that are always visible and cannot be hidden in the settings. */
|
|
11507
|
+
pinnedTagTypes?: ReadonlyArray<F0GraphNodeTagType>;
|
|
11508
|
+
/**
|
|
11509
|
+
* Floating toolbar shown above a node while it is selected. Provide the
|
|
11510
|
+
* action buttons (e.g. `<F0Button size="sm" … />`) for the given record.
|
|
11511
|
+
*/
|
|
11512
|
+
nodeActions?: (record: R) => ReactNode;
|
|
11513
|
+
/** Resolves a stable node id from a record. Defaults to `String(record.id)`. */
|
|
11514
|
+
getNodeId?: (record: R) => string;
|
|
11515
|
+
/** Number of children a node has. A node is expandable when this is `> 0`. */
|
|
11516
|
+
getChildrenCount: (record: R) => number;
|
|
11517
|
+
/**
|
|
11518
|
+
* Returns the filters that, applied to the source `dataAdapter`, fetch the
|
|
11519
|
+
* direct children of `parentId`. `parentId === null` must return the roots.
|
|
11520
|
+
*/
|
|
11521
|
+
childrenFilters: (parentId: string | null) => Partial<FiltersState<Filters>>;
|
|
11522
|
+
/**
|
|
11523
|
+
* How many levels to load and expand on the initial render.
|
|
11524
|
+
* - `0`: show only the roots; every level below loads on click.
|
|
11525
|
+
* - `1` (default): also show the roots' direct children.
|
|
11526
|
+
* - `2`: also pre-load the grandchildren for a fuller first view.
|
|
11527
|
+
*/
|
|
11528
|
+
defaultExpandDepth?: number;
|
|
11529
|
+
/**
|
|
11530
|
+
* Id of a node to reveal: loads its ancestor path, expands the branch and
|
|
11531
|
+
* centers/highlights it. Driven by the shared Data Collection search — set it
|
|
11532
|
+
* from `searchPreview.onSelect`.
|
|
11533
|
+
*/
|
|
11534
|
+
revealNodeId?: string;
|
|
11535
|
+
/**
|
|
11536
|
+
* Resolves the ancestor path (root → … → matched node) for a node so it can
|
|
11537
|
+
* be revealed, returning the records in root-first order. Required for
|
|
11538
|
+
* revealing nodes in branches that have not been expanded yet.
|
|
11539
|
+
*/
|
|
11540
|
+
loadNodePath?: (nodeId: string) => Promise<R[]>;
|
|
11541
|
+
/** Optional parent accessor used when linking the revealed ancestor path. */
|
|
11542
|
+
getParentId?: (record: R) => string | null;
|
|
11543
|
+
/**
|
|
11544
|
+
* Id of the node representing the current user. When set, a "Find me" button
|
|
11545
|
+
* is shown in the controls that centers the viewport on that node.
|
|
11546
|
+
*/
|
|
11547
|
+
currentUserNodeId?: string;
|
|
11548
|
+
/** Initial zoom preset passed through to F0Graph. */
|
|
11549
|
+
zoomPreset?: ZoomPreset;
|
|
11550
|
+
/**
|
|
11551
|
+
* Smallest zoom the user can pan to (the zoom-out limit), passed through to
|
|
11552
|
+
* F0Graph. Defaults to F0Graph's own default. Raise it (e.g. `0.3`) to keep
|
|
11553
|
+
* the tree readable and avoid the most zoomed-out "dot" level.
|
|
11554
|
+
*/
|
|
11555
|
+
minZoom?: number;
|
|
11556
|
+
/** Largest zoom the user can pan to (the zoom-in limit), passed through to F0Graph. */
|
|
11557
|
+
maxZoom?: number;
|
|
11558
|
+
/** Whether to render the zoom/fit controls. Defaults to `true`. */
|
|
11559
|
+
showControls?: boolean;
|
|
11560
|
+
};
|
|
11561
|
+
|
|
11562
|
+
declare type GraphVisualizationSettings = {
|
|
11563
|
+
/** Metadata order (tag-type ids), matching the table column settings shape. */
|
|
11564
|
+
order?: string[];
|
|
11565
|
+
/** Hidden metadata (tag-type ids). */
|
|
11566
|
+
hidden?: string[];
|
|
11567
|
+
};
|
|
11568
|
+
|
|
11486
11569
|
export declare type GridStackReactOptions = Omit<GridStackOptions, "children">;
|
|
11487
11570
|
|
|
11488
11571
|
export declare type GridStackReactSize = {
|
|
@@ -14276,6 +14359,26 @@ declare type SearchOptions = {
|
|
|
14276
14359
|
debounceTime?: number;
|
|
14277
14360
|
};
|
|
14278
14361
|
|
|
14362
|
+
/**
|
|
14363
|
+
* Optional rich search preview shown in the shared Data Collection search.
|
|
14364
|
+
* When provided, typing in the header search renders a results dropdown with
|
|
14365
|
+
* avatar + title + subtitle, consistent across every visualization. Selecting a
|
|
14366
|
+
* result calls `onSelect` (e.g. the graph view reveals/centers the node).
|
|
14367
|
+
*/
|
|
14368
|
+
declare type SearchPreview<R extends RecordType> = {
|
|
14369
|
+
search: (query: string) => Promise<R[]>;
|
|
14370
|
+
getId: (record: R) => string;
|
|
14371
|
+
render: (record: R) => SearchPreviewResultData;
|
|
14372
|
+
onSelect: (record: R) => void;
|
|
14373
|
+
};
|
|
14374
|
+
|
|
14375
|
+
/** Data shown for a single row of the search preview dropdown. */
|
|
14376
|
+
declare type SearchPreviewResultData = {
|
|
14377
|
+
avatar?: AvatarVariant;
|
|
14378
|
+
title: string;
|
|
14379
|
+
subtitle?: string;
|
|
14380
|
+
};
|
|
14381
|
+
|
|
14279
14382
|
declare interface SecondaryAction extends PrimaryActionButton {
|
|
14280
14383
|
variant?: "outline" | "critical" | "outlinePromote" | "promote";
|
|
14281
14384
|
}
|
|
@@ -16527,6 +16630,26 @@ export declare type ZIndexToken = "auto" | "0" | "10" | "20" | "30" | "40" | "50
|
|
|
16527
16630
|
*/
|
|
16528
16631
|
declare type ZodTypeName = "ZodString" | "ZodNumber" | "ZodBoolean" | "ZodDate" | "ZodEnum" | "ZodArray" | "ZodObject" | "ZodOptional" | "ZodNullable" | "ZodDefault" | "ZodLiteral" | "ZodEffects";
|
|
16529
16632
|
|
|
16633
|
+
declare type ZoomPreset = keyof typeof zoomPresets;
|
|
16634
|
+
|
|
16635
|
+
declare const zoomPresets: {
|
|
16636
|
+
readonly default: {
|
|
16637
|
+
readonly detail: 0.56;
|
|
16638
|
+
readonly compact: 0.3;
|
|
16639
|
+
readonly dot: 0.18;
|
|
16640
|
+
};
|
|
16641
|
+
readonly dense: {
|
|
16642
|
+
readonly detail: 0.5;
|
|
16643
|
+
readonly compact: 0.2;
|
|
16644
|
+
readonly dot: 0.08;
|
|
16645
|
+
};
|
|
16646
|
+
readonly sparse: {
|
|
16647
|
+
readonly detail: 0.85;
|
|
16648
|
+
readonly compact: 0.45;
|
|
16649
|
+
readonly dot: 0.15;
|
|
16650
|
+
};
|
|
16651
|
+
};
|
|
16652
|
+
|
|
16530
16653
|
export { }
|
|
16531
16654
|
|
|
16532
16655
|
|
package/dist/f0.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { gR as VI, a8 as rt, bp as Dx, o as J, q as Ln, gL as FI, p as ea, eZ as cG, af as Fp, U as K, u as $e, H as tt, df as iu, A as Gp, j as GI, L as ja, c$ as Ka, a9 as qt, a5 as Rf, gS as fG, ae as Ml, gI as X0, gT as dG, gU as hG, gV as HS, ea as vG, gW as pG, gX as HI, fz as Ax, gY as gG, gZ as mG, g_ as _l, g$ as Pf, h0 as au, h1 as yG, h2 as WI, h3 as bG, h4 as _G, bJ as xG, bI as wG, v as Ss, J as kf, K as Of, Q as vt, O as Bf, fV as $I, Y as Zt, ad as zf, _ as ds, h5 as SG, aP as UI, bg as CG, e6 as WS, cV as YI, ba as Fl, bh as TG, aD as Mx, aE as Ex, aF as Lx, al as Nx, cd as sv, h6 as Ix, h7 as DG, gK as $S, fE as AG, h8 as lv, at as MG, gk as Rx, h9 as EG, $ as Vf, c3 as LG, n as NG, l as IG, ha as XI, hb as RG, hc as PG, hd as qI, y as kG, he as OG, hf as BG, hg as zG, hh as US, fx as VG, hi as FG, g1 as ou, g2 as Ff, gg as GG, fT as ZI, aa as bn, aq as HG, cO as q0, cN as jI, g4 as KI, fS as WG, hj as Hp, dq as Px, gw as $G, a3 as QI, fw as UG, bL as YG, gl as kx, dZ as XG, d_ as qG, d$ as ZG, d as jG, eJ as KG, G as JI, cU as Cs, dJ as e2, dp as t2, bO as Ox, dL as r2, cF as Bx, fX as El, fY as Ll, N as Nl, fZ as Il, fW as Pa, cH as n2, as as QG, dm as uv, be as Gl, g7 as Fr, bV as JG, e7 as jc, bU as e3, aC as t3, gq as jr, hk as r3, hl as n3, hm as i2, hn as Wp, ho as i3, hp as a3, du as a2, ds as o2, e4 as o3, hq as s3, aS as s2, aY as l3, gi as u3, gj as c3, bq as su, bu as lu, bB as Gf, dM as f3, br as d3, b7 as h3, S as l2, bf as v3, a1 as p3, dj as YS, dI as Kc, fA as g3, fB as m3, hr as y3, aX as b3, bv as _3, cZ as u2, a6 as x3, cM as w3, gO as S3, bD as C3, hs as T3, ht as D3, I as A3, hu as M3, hv as E3, hw as L3, hx as N3, hy as I3 } from "./F0CanvasPanel-CiR0Puvp.js";
|
|
2
|
+
import { hO as Ppe, C as kpe, D as Ope, aQ as Bpe, c as zpe, F as Vpe, a as Fpe, hH as Gpe, f as Hpe, b8 as Wpe, aR as $pe, bE as Upe, e1 as Ype, aI as Xpe, bk as qpe, ak as Zpe, e9 as jpe, bS as Kpe, g as Qpe, e0 as Jpe, hC as ege, hT as tge, cg as rge, a$ as nge, e as ige, bT as age, av as oge, bw as sge, hJ as lge, b3 as uge, hK as cge, hM as fge, hN as dge, ch as hge, hQ as vge, c9 as pge, ca as gge, P as mge, ce as yge, hL as bge, cb as _ge, hP as xge, hU as wge, hz as Sge, hA as Cge, hB as Tge, cc as Dge, hS as Age, hI as Mge, hF as Ege, hE as Lge, cf as Nge, fQ as Ige, gx as Rge, hR as Pge, aV as kge, c8 as Oge, c5 as Bge, c7 as zge, c4 as Vge, hG as Fge, gz as Gge, gt as Hge, g5 as Wge, hX as $ge, bY as Uge, c6 as Yge, hW as Xge, bl as qge, e2 as Zge, fP as jge, g6 as Kge, b as Qge, bo as Jge, gQ as eme, aT as tme, e3 as rme, hD as nme, gv as ime, gu as ame, hV as ome } from "./F0CanvasPanel-CiR0Puvp.js";
|
|
3
3
|
import { jsx as S, jsxs as B, Fragment as nt } from "react/jsx-runtime";
|
|
4
4
|
import * as St from "react";
|
|
5
5
|
import _t, { forwardRef as hr, useRef as fe, useImperativeHandle as R3, Children as cv, createContext as Or, useContext as fr, useState as oe, useMemo as ue, useEffect as ve, useCallback as ie, useLayoutEffect as Z0, isValidElement as c2, Fragment as $p, memo as f2, useReducer as P3, cloneElement as k3, useId as Ic, useSyncExternalStore as XS } from "react";
|
|
6
|
-
import { T as d2, y as O3, z as B3, B as z3, C as V3, D as h2, E as fv, G as zx, H as v2, I as p2, J as g2, K as F3, L as G3, M as H3, N as W3, O as $3, F as U3 } from "./useChatHistory-
|
|
7
|
-
import { A as lme, s as ume, t as cme, w as fme, l as dme, i as hme, q as vme, x as pme, p as gme, r as mme, j as yme, e as bme, P as _me, g as xme, k as wme, h as Sme, a as Cme, n as Tme, m as Dme, o as Ame, b as Mme, f as Eme, v as Lme, c as Nme, d as Ime, u as Rme } from "./useChatHistory-
|
|
6
|
+
import { T as d2, y as O3, z as B3, B as z3, C as V3, D as h2, E as fv, G as zx, H as v2, I as p2, J as g2, K as F3, L as G3, M as H3, N as W3, O as $3, F as U3 } from "./useChatHistory-DYxggHJX.js";
|
|
7
|
+
import { A as lme, s as ume, t as cme, w as fme, l as dme, i as hme, q as vme, x as pme, p as gme, r as mme, j as yme, e as bme, P as _me, g as xme, k as wme, h as Sme, a as Cme, n as Tme, m as Dme, o as Ame, b as Mme, f as Eme, v as Lme, c as Nme, d as Ime, u as Rme } from "./useChatHistory-DYxggHJX.js";
|
|
8
8
|
import { createPortal as Vx, unstable_batchedUpdates as hd } from "react-dom";
|
|
9
|
-
import { C as Y3, F as X3, ah as m2, ai as q3, aj as Z3, ak as j3, al as Fx, am as Gx, G as K3, an as Q3, Y as J3, a8 as eH, ao as tH, Q as rH, ap as nH, aq as iH, c as Up, ar as Hf, R as Hx, u as Wx, W as y2, O as $x, as as b2, at as qS, au as Ux, o as aH, d as _2, $ as x2, av as oH, aw as sH, ax as lH, ay as uH, az as cH, M as fH } from "./useDataCollectionSource-
|
|
10
|
-
import { r as kme, s as Ome, H as Bme, t as zme, z as Vme, aQ as Fme, aP as Gme, aL as Hme, aB as Wme, aA as $me, aC as Ume, aD as Yme, aa as Xme, a9 as qme, ad as Zme, U as jme, J as Kme, af as Qme, K as Jme, v as eye, aR as tye, ab as rye, ac as nye, N as iye, w as aye, P as oye, y as sye, D as lye, ae as uye, T as cye, ag as fye, x as dye, E as hye, aT as vye, m as pye, n as gye, aK as mye, aG as yye, aF as bye, aS as _ye, a6 as xye, aI as wye, aJ as Sye, I as Cye, aU as Tye, aV as Dye, e as Aye, aM as Mye, aN as Eye, aO as Lye, aH as Nye, f as Iye, h as Rye, aE as Pye, aW as kye } from "./useDataCollectionSource-
|
|
9
|
+
import { C as Y3, F as X3, ah as m2, ai as q3, aj as Z3, ak as j3, al as Fx, am as Gx, G as K3, an as Q3, Y as J3, a8 as eH, ao as tH, Q as rH, ap as nH, aq as iH, c as Up, ar as Hf, R as Hx, u as Wx, W as y2, O as $x, as as b2, at as qS, au as Ux, o as aH, d as _2, $ as x2, av as oH, aw as sH, ax as lH, ay as uH, az as cH, M as fH } from "./useDataCollectionSource-CL96mQHh.js";
|
|
10
|
+
import { r as kme, s as Ome, H as Bme, t as zme, z as Vme, aQ as Fme, aP as Gme, aL as Hme, aB as Wme, aA as $me, aC as Ume, aD as Yme, aa as Xme, a9 as qme, ad as Zme, U as jme, J as Kme, af as Qme, K as Jme, v as eye, aR as tye, ab as rye, ac as nye, N as iye, w as aye, P as oye, y as sye, D as lye, ae as uye, T as cye, ag as fye, x as dye, E as hye, aT as vye, m as pye, n as gye, aK as mye, aG as yye, aF as bye, aS as _ye, a6 as xye, aI as wye, aJ as Sye, I as Cye, aU as Tye, aV as Dye, e as Aye, aM as Mye, aN as Eye, aO as Lye, aH as Nye, f as Iye, h as Rye, aE as Pye, aW as kye } from "./useDataCollectionSource-CL96mQHh.js";
|
|
11
11
|
import { utils as Rl, write as w2 } from "./xlsx-Bedf3nwD.js";
|
|
12
12
|
import { defaultTranslations as Bye } from "./i18n-provider-defaults.js";
|
|
13
13
|
import './f0.css';const dH = {
|
|
@@ -267,16 +267,18 @@ export declare const defaultTranslations: {
|
|
|
267
267
|
readonly cancel: "Cancel";
|
|
268
268
|
};
|
|
269
269
|
readonly visualizations: {
|
|
270
|
-
readonly table: "Table
|
|
271
|
-
readonly editableTable: "Editable table
|
|
272
|
-
readonly card: "Card
|
|
273
|
-
readonly list: "List
|
|
274
|
-
readonly kanban: "Kanban
|
|
270
|
+
readonly table: "Table";
|
|
271
|
+
readonly editableTable: "Editable table";
|
|
272
|
+
readonly card: "Card";
|
|
273
|
+
readonly list: "List";
|
|
274
|
+
readonly kanban: "Kanban";
|
|
275
|
+
readonly graph: "Graph";
|
|
275
276
|
readonly pagination: {
|
|
276
277
|
readonly of: "of";
|
|
277
278
|
};
|
|
278
279
|
readonly settings: "{{visualizationName}} settings";
|
|
279
280
|
readonly reset: "Reset to default";
|
|
281
|
+
readonly viewSelectorLabel: "Select view";
|
|
280
282
|
};
|
|
281
283
|
readonly table: {
|
|
282
284
|
readonly settings: {
|
|
@@ -787,33 +789,6 @@ export declare const defaultTranslations: {
|
|
|
787
789
|
readonly zoomIn: "Zoom in";
|
|
788
790
|
readonly zoomOut: "Zoom out";
|
|
789
791
|
readonly navigation: "Graph navigation";
|
|
790
|
-
readonly metadataSettings: "Metadata visibility";
|
|
791
|
-
readonly tagTypeLabels: {
|
|
792
|
-
readonly person: "People";
|
|
793
|
-
readonly team: "Teams";
|
|
794
|
-
readonly company: "Companies";
|
|
795
|
-
readonly status: "Statuses";
|
|
796
|
-
readonly alert: "Alerts";
|
|
797
|
-
readonly balance: "Balances";
|
|
798
|
-
readonly dot: "Tags";
|
|
799
|
-
readonly raw: "Tags";
|
|
800
|
-
};
|
|
801
|
-
};
|
|
802
|
-
readonly search: {
|
|
803
|
-
readonly noResults: "No results";
|
|
804
|
-
};
|
|
805
|
-
readonly detailPanel: {
|
|
806
|
-
readonly details: "Details";
|
|
807
|
-
readonly moreActions: "More actions";
|
|
808
|
-
readonly resize: "Resize detail panel";
|
|
809
|
-
};
|
|
810
|
-
readonly expander: {
|
|
811
|
-
readonly collapse: "Collapse {{count}} items";
|
|
812
|
-
readonly expand: "Expand {{count}} items";
|
|
813
|
-
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
814
|
-
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
815
|
-
readonly collapseWithParent: "Collapse {{parent}}";
|
|
816
|
-
readonly collapseDefault: "Collapse children";
|
|
817
792
|
};
|
|
818
793
|
};
|
|
819
794
|
readonly wizard: {
|
|
@@ -267,16 +267,18 @@ const e = {
|
|
|
267
267
|
cancel: "Cancel"
|
|
268
268
|
},
|
|
269
269
|
visualizations: {
|
|
270
|
-
table: "Table
|
|
271
|
-
editableTable: "Editable table
|
|
272
|
-
card: "Card
|
|
273
|
-
list: "List
|
|
274
|
-
kanban: "Kanban
|
|
270
|
+
table: "Table",
|
|
271
|
+
editableTable: "Editable table",
|
|
272
|
+
card: "Card",
|
|
273
|
+
list: "List",
|
|
274
|
+
kanban: "Kanban",
|
|
275
|
+
graph: "Graph",
|
|
275
276
|
pagination: {
|
|
276
277
|
of: "of"
|
|
277
278
|
},
|
|
278
279
|
settings: "{{visualizationName}} settings",
|
|
279
|
-
reset: "Reset to default"
|
|
280
|
+
reset: "Reset to default",
|
|
281
|
+
viewSelectorLabel: "Select view"
|
|
280
282
|
},
|
|
281
283
|
table: {
|
|
282
284
|
settings: {
|
|
@@ -786,34 +788,7 @@ const e = {
|
|
|
786
788
|
fitToView: "Fit to view",
|
|
787
789
|
zoomIn: "Zoom in",
|
|
788
790
|
zoomOut: "Zoom out",
|
|
789
|
-
navigation: "Graph navigation"
|
|
790
|
-
metadataSettings: "Metadata visibility",
|
|
791
|
-
tagTypeLabels: {
|
|
792
|
-
person: "People",
|
|
793
|
-
team: "Teams",
|
|
794
|
-
company: "Companies",
|
|
795
|
-
status: "Statuses",
|
|
796
|
-
alert: "Alerts",
|
|
797
|
-
balance: "Balances",
|
|
798
|
-
dot: "Tags",
|
|
799
|
-
raw: "Tags"
|
|
800
|
-
}
|
|
801
|
-
},
|
|
802
|
-
search: {
|
|
803
|
-
noResults: "No results"
|
|
804
|
-
},
|
|
805
|
-
detailPanel: {
|
|
806
|
-
details: "Details",
|
|
807
|
-
moreActions: "More actions",
|
|
808
|
-
resize: "Resize detail panel"
|
|
809
|
-
},
|
|
810
|
-
expander: {
|
|
811
|
-
collapse: "Collapse {{count}} items",
|
|
812
|
-
expand: "Expand {{count}} items",
|
|
813
|
-
expandWithParentSingular: "Expand {{parent}}, {{count}} child",
|
|
814
|
-
expandWithParentPlural: "Expand {{parent}}, {{count}} children",
|
|
815
|
-
collapseWithParent: "Collapse {{parent}}",
|
|
816
|
-
collapseDefault: "Collapse children"
|
|
791
|
+
navigation: "Graph navigation"
|
|
817
792
|
}
|
|
818
793
|
},
|
|
819
794
|
wizard: {
|