@factorialco/f0-react 6.36.0 → 6.37.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.
@@ -1,4 +1,4 @@
1
- import { u as W, t as je, v as Ge, m as $, x as Xe, y as Ze, z as qe, A as Ye, B as Je, E as Qe, G as et, H as tt, J as nt, K as rt, L as at, M as ot, N as ye, O as st, Q as Ce, l as it, R as ct, U as lt, V as dt, w as ut, r as ft } from "./F0CanvasPanel-C4oILlIh.js";
1
+ import { u as W, t as je, v as Ge, m as $, x as Xe, y as Ze, z as qe, A as Ye, B as Je, E as Qe, G as et, H as tt, J as nt, K as rt, L as at, M as ot, N as ye, O as st, Q as Ce, l as it, R as ct, U as lt, V as dt, w as ut, r as ft } from "./F0CanvasPanel-I2yVFoJt.js";
2
2
  import { jsxs as R, jsx as l } from "react/jsx-runtime";
3
3
  import { forwardRef as re, useId as mt, useState as x, useRef as O, useEffect as _, useMemo as J, useCallback as M } from "react";
4
4
  import { d as H, f as de } from "./tooltip-DTpaXpXW.js";
@@ -1,5 +1,5 @@
1
1
  import { jsx as p } from "react/jsx-runtime";
2
- import { m } from "./experimental-BfAU5qNL.js";
2
+ import { m } from "./experimental-CSDwYYVZ.js";
3
3
  import { useRef as l, useEffect as i, useState as b } from "react";
4
4
  const k = "https://tiles.openfreemap.org/styles/positron", y = "https://tiles.openfreemap.org/styles/dark", R = 15, d = (n) => {
5
5
  const [c, s] = b(!1);
@@ -1,8 +1,8 @@
1
1
  import { jsxs as a, jsx as r, Fragment as N } from "react/jsx-runtime";
2
2
  import { useState as i, useEffect as k } from "react";
3
- import { u as v, T as S, h as V, S as R } from "./F0CanvasPanel-C4oILlIh.js";
3
+ import { u as v, T as S, h as V, S as R } from "./F0CanvasPanel-I2yVFoJt.js";
4
4
  import { f as z, c as E } from "./sheetPreview-5qeAOp0W.js";
5
- import { u as _, D as j } from "./DocumentToolbar-XaFrwwJG.js";
5
+ import { u as _, D as j } from "./DocumentToolbar-BMthASJ1.js";
6
6
  const g = 1e3, F = 100, G = ({
7
7
  url: n,
8
8
  filename: y,
@@ -1,7 +1,7 @@
1
1
  import { jsxs as b, jsx as e } from "react/jsx-runtime";
2
2
  import { useState as _, useEffect as h } from "react";
3
- import { u as x, S as p, p as w } from "./F0CanvasPanel-C4oILlIh.js";
4
- import { u as y, D as g } from "./DocumentToolbar-XaFrwwJG.js";
3
+ import { u as x, S as p, p as w } from "./F0CanvasPanel-I2yVFoJt.js";
4
+ import { u as y, D as g } from "./DocumentToolbar-BMthASJ1.js";
5
5
  const k = 2 * 1024 * 1024, v = [
6
6
  "[&_h1]:mb-3 [&_h1]:mt-6 [&_h1]:text-2xl [&_h1]:font-semibold",
7
7
  "[&_h2]:mb-2 [&_h2]:mt-5 [&_h2]:text-xl [&_h2]:font-semibold",
package/dist/ai.d.ts CHANGED
@@ -457,6 +457,21 @@ declare type AiChatProviderReturnValue = {
457
457
  * Reset the chat width to the default value (360px)
458
458
  */
459
459
  resetChatWidth: () => void;
460
+ /**
461
+ * True while the user is dragging the chat's resize handle. Broadcast here
462
+ * because everything laid out against the chat's edge has to follow the drag
463
+ * 1:1 — an eased width leaves the seam trailing the cursor.
464
+ *
465
+ * OPTIONAL on purpose: the provider always supplies both, but a required
466
+ * addition to this return type reads as a breaking change to the public API
467
+ * check even though callers only ever read it.
468
+ *
469
+ * The window that renders the handle keeps its own local drag state and
470
+ * mirrors it here; it does not read this back as the gate for its listener,
471
+ * since a split layout has two windows and only one is being dragged.
472
+ */
473
+ isResizing?: boolean;
474
+ setIsResizing?: React.Dispatch<React.SetStateAction<boolean>>;
460
475
  /**
461
476
  * The current visualization mode of the chat
462
477
  */
@@ -1133,6 +1148,21 @@ export declare type CanvasContentBase = {
1133
1148
  title: string;
1134
1149
  description?: string;
1135
1150
  toolCallId?: string;
1151
+ /**
1152
+ * Render this content across the whole frame, covering the docked chat
1153
+ * instead of hugging a seam beside it. For content that is a step of its own
1154
+ * rather than something you work through while talking — picking a template,
1155
+ * say. The chat is only covered, never closed, so the conversation is exactly
1156
+ * where it was when the canvas is dismissed.
1157
+ *
1158
+ * Deliberately NOT called `fullscreen`: the chat's own
1159
+ * `visualizationMode: "fullscreen"` means the opposite arrangement (chat full
1160
+ * width, no canvas), and going back to it is how a covering canvas is
1161
+ * dismissed.
1162
+ *
1163
+ * Defaults to the docked split.
1164
+ */
1165
+ coversChat?: boolean;
1136
1166
  };
1137
1167
 
1138
1168
  /**
@@ -4056,8 +4086,20 @@ declare type F0AvatarPersonProps = {
4056
4086
  badge?: AvatarBadge;
4057
4087
  /**
4058
4088
  * Whether the person is deactivated. If true, the avatar will display an icon instead of the person's name or picture.
4089
+ *
4090
+ * Mutually exclusive with `pending`: they represent opposite ends of the
4091
+ * employee lifecycle. If both are set, `deactivated` takes precedence.
4059
4092
  */
4060
4093
  deactivated?: boolean;
4094
+ /**
4095
+ * Whether the position is still to be filled — a person who is planned but
4096
+ * not hired yet (e.g. an open role in headcount planning). If true, the
4097
+ * avatar will display a search-person icon instead of the person's name or
4098
+ * picture.
4099
+ *
4100
+ * Mutually exclusive with `deactivated`.
4101
+ */
4102
+ pending?: boolean;
4061
4103
  } & Pick<BaseAvatarProps, "aria-label" | "aria-labelledby">;
4062
4104
 
4063
4105
  declare type F0AvatarTeamProps = {
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-C4oILlIh.js";
1
+ import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-I2yVFoJt.js";
2
2
  import { defaultTranslations as c } from "./i18n-provider-defaults.js";
3
- import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-CA3YKEvp.js";
3
+ import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-yNEnd9Kb.js";
4
4
  export {
5
5
  P as AiChatTranslationsProvider,
6
6
  e as ChatSpinner,