@factorialco/f0-react 2.3.0 → 2.4.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/ai.d.ts CHANGED
@@ -1443,6 +1443,10 @@ declare type DashboardMetadata = {
1443
1443
  lastEdited: Date | string;
1444
1444
  };
1445
1445
 
1446
+ declare type DataAttributes_2 = {
1447
+ [key: `data-${string}`]: string | undefined;
1448
+ };
1449
+
1446
1450
  /**
1447
1451
  * Data download canvas content — renders a full data table with download options.
1448
1452
  */
@@ -2495,6 +2499,47 @@ export declare class F0AiMask {
2495
2499
  private render;
2496
2500
  }
2497
2501
 
2502
+ export declare function F0AiProposalCard(props: F0AiProposalCardProps): JSX_2.Element;
2503
+
2504
+ export declare namespace F0AiProposalCard {
2505
+ var displayName: string;
2506
+ }
2507
+
2508
+ export declare interface F0AiProposalCardActions {
2509
+ /** Label for the primary action button. */
2510
+ primaryActionLabel: string;
2511
+ /** Optional icon shown before the primary action label. */
2512
+ primaryActionIcon?: IconType;
2513
+ /** Whether the action footer is visible. */
2514
+ showActions?: true;
2515
+ /** Called when the primary action is clicked. */
2516
+ onPrimaryAction: () => void;
2517
+ }
2518
+
2519
+ export declare interface F0AiProposalCardBaseProps extends DataAttributes_2 {
2520
+ /** Module avatar shown in the card header. */
2521
+ module?: ModuleId;
2522
+ /** Header label describing the proposal type. */
2523
+ heading: string;
2524
+ /** Main proposal title. */
2525
+ title: string;
2526
+ /** Optional secondary metadata line. */
2527
+ subtitle?: string;
2528
+ /** Proposal details. Line breaks are preserved when expanded. */
2529
+ description: string;
2530
+ /** Label for the inline expansion control. */
2531
+ seeMoreLabel: string;
2532
+ /** Maximum number of characters shown before expansion. */
2533
+ maxCollapsedDescriptionLength?: number;
2534
+ }
2535
+
2536
+ export declare interface F0AiProposalCardHiddenActions {
2537
+ /** Hide the action footer and omit action props. */
2538
+ showActions: false;
2539
+ }
2540
+
2541
+ export declare type F0AiProposalCardProps = F0AiProposalCardBaseProps & (F0AiProposalCardActions | F0AiProposalCardHiddenActions);
2542
+
2498
2543
  export declare function F0AuraVoiceAnimation({ size, state, color, colorShift, audioTrack, themeMode, className, ref, ...props }: F0AuraVoiceAnimationProps & ComponentProps<"div"> & VariantProps<typeof F0AuraVoiceAnimationVariants>): JSX_2.Element;
2499
2544
 
2500
2545
  export declare interface F0AuraVoiceAnimationProps {
@@ -3695,6 +3740,11 @@ declare module "gridstack" {
3695
3740
  }
3696
3741
 
3697
3742
 
3743
+ declare namespace Calendar {
3744
+ var displayName: string;
3745
+ }
3746
+
3747
+
3698
3748
  declare module "@tiptap/core" {
3699
3749
  interface Commands<ReturnType> {
3700
3750
  aiBlock: {
@@ -3707,9 +3757,8 @@ declare module "@tiptap/core" {
3707
3757
 
3708
3758
  declare module "@tiptap/core" {
3709
3759
  interface Commands<ReturnType> {
3710
- enhanceHighlight: {
3711
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
3712
- clearEnhanceHighlight: () => ReturnType;
3760
+ moodTracker: {
3761
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
3713
3762
  };
3714
3763
  }
3715
3764
  }
@@ -3717,8 +3766,9 @@ declare module "@tiptap/core" {
3717
3766
 
3718
3767
  declare module "@tiptap/core" {
3719
3768
  interface Commands<ReturnType> {
3720
- moodTracker: {
3721
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
3769
+ enhanceHighlight: {
3770
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
3771
+ clearEnhanceHighlight: () => ReturnType;
3722
3772
  };
3723
3773
  }
3724
3774
  }
@@ -3742,8 +3792,3 @@ declare module "@tiptap/core" {
3742
3792
  };
3743
3793
  }
3744
3794
  }
3745
-
3746
-
3747
- declare namespace Calendar {
3748
- var displayName: string;
3749
- }
package/dist/ai.js CHANGED
@@ -1,45 +1,46 @@
1
- import { d as o, l as e, k as r, F as t, a as n, C as i, b as d, m as C, n as F, e as l, h as m, I as u, g as h, c as A, i as D, u as c, j as v, f as I } from "./useDataCollectionSource-BNMQa-mV.js";
1
+ import { d as o, l as r, k as e, F as t, a as n, C as i, b as d, m as C, n as F, e as l, h as m, I as u, g as h, c as A, i as D, u as c, j as v, f as I } from "./useDataCollectionSource-BNMQa-mV.js";
2
2
  import { defaultTranslations as b } from "./i18n-provider-defaults.js";
3
- import { A as S, C as T, c as p, D as P, a as w, b as x, e as H, f as M, g as V, h as k, p as j, l as y, m as O, n as q, i as z, F as B, d as E, M as L, k as W, j as G, q as J, o as K, s as N, u as Q } from "./types-zUkcMLoO.js";
3
+ import { A as p, C as P, c as S, D as T, a as w, b as x, e as H, f as M, g as V, h as k, p as j, l as y, r as O, m as q, n as z, i as B, F as E, d as L, M as W, k as G, j as J, q as K, o as N, s as Q, u as R } from "./F0AiProposalCard-Dnuvkpg2.js";
4
4
  export {
5
- S as AiChatTranslationsProvider,
5
+ p as AiChatTranslationsProvider,
6
6
  o as CanvasCard,
7
- e as ChatSpinner,
8
- T as CloseCanvasButton,
9
- p as DashboardCanvasProvider,
10
- P as DashboardCard,
7
+ r as ChatSpinner,
8
+ P as CloseCanvasButton,
9
+ S as DashboardCanvasProvider,
10
+ T as DashboardCard,
11
11
  w as DashboardContent,
12
12
  x as DashboardHeader,
13
13
  H as DataDownloadCard,
14
14
  M as DataDownloadContent,
15
15
  V as DataDownloadHeader,
16
16
  k as DataDownloadProvider,
17
- r as F0ActionItem,
17
+ e as F0ActionItem,
18
18
  t as F0AiChat,
19
19
  n as F0AiChatProvider,
20
20
  i as F0AiChatTextArea,
21
21
  d as F0AiFullscreenChat,
22
22
  j as F0AiInsightCard,
23
23
  y as F0AiMask,
24
- O as F0AuraVoiceAnimation,
25
- q as F0HILActionConfirmation,
26
- z as F0MessageCreditsWarning,
24
+ O as F0AiProposalCard,
25
+ q as F0AuraVoiceAnimation,
26
+ z as F0HILActionConfirmation,
27
+ B as F0MessageCreditsWarning,
27
28
  C as F0OneIcon,
28
29
  F as F0OneSwitch,
29
30
  l as FormCard,
30
31
  m as FormCardValueFormatterProvider,
31
- B as FormContent,
32
- E as FormHeader,
32
+ E as FormContent,
33
+ L as FormHeader,
33
34
  u as I18nProvider,
34
- L as MessageSources,
35
- W as actionItemStatuses,
36
- G as aiTranslations,
37
- J as contentTypes,
35
+ W as MessageSources,
36
+ G as actionItemStatuses,
37
+ J as aiTranslations,
38
+ K as contentTypes,
38
39
  b as defaultTranslations,
39
- K as oneIconSizes,
40
- N as savedDashboardConfigStore,
40
+ N as oneIconSizes,
41
+ Q as savedDashboardConfigStore,
41
42
  h as useAiChat,
42
- Q as useAiChatTranslations,
43
+ R as useAiChatTranslations,
43
44
  A as useCanvasEntity,
44
45
  D as useFormCardValueFormatter,
45
46
  c as useI18n,
@@ -8217,6 +8217,11 @@ declare module "gridstack" {
8217
8217
  }
8218
8218
 
8219
8219
 
8220
+ declare namespace Calendar {
8221
+ var displayName: string;
8222
+ }
8223
+
8224
+
8220
8225
  declare module "@tiptap/core" {
8221
8226
  interface Commands<ReturnType> {
8222
8227
  aiBlock: {
@@ -8229,9 +8234,8 @@ declare module "@tiptap/core" {
8229
8234
 
8230
8235
  declare module "@tiptap/core" {
8231
8236
  interface Commands<ReturnType> {
8232
- enhanceHighlight: {
8233
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
8234
- clearEnhanceHighlight: () => ReturnType;
8237
+ moodTracker: {
8238
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
8235
8239
  };
8236
8240
  }
8237
8241
  }
@@ -8239,8 +8243,9 @@ declare module "@tiptap/core" {
8239
8243
 
8240
8244
  declare module "@tiptap/core" {
8241
8245
  interface Commands<ReturnType> {
8242
- moodTracker: {
8243
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
8246
+ enhanceHighlight: {
8247
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
8248
+ clearEnhanceHighlight: () => ReturnType;
8244
8249
  };
8245
8250
  }
8246
8251
  }
@@ -8264,8 +8269,3 @@ declare module "@tiptap/core" {
8264
8269
  };
8265
8270
  }
8266
8271
  }
8267
-
8268
-
8269
- declare namespace Calendar {
8270
- var displayName: string;
8271
- }
package/dist/f0.d.ts CHANGED
@@ -5558,6 +5558,47 @@ export declare class F0AiMask {
5558
5558
  private render;
5559
5559
  }
5560
5560
 
5561
+ export declare function F0AiProposalCard(props: F0AiProposalCardProps): JSX_2.Element;
5562
+
5563
+ export declare namespace F0AiProposalCard {
5564
+ var displayName: string;
5565
+ }
5566
+
5567
+ export declare interface F0AiProposalCardActions {
5568
+ /** Label for the primary action button. */
5569
+ primaryActionLabel: string;
5570
+ /** Optional icon shown before the primary action label. */
5571
+ primaryActionIcon?: IconType;
5572
+ /** Whether the action footer is visible. */
5573
+ showActions?: true;
5574
+ /** Called when the primary action is clicked. */
5575
+ onPrimaryAction: () => void;
5576
+ }
5577
+
5578
+ export declare interface F0AiProposalCardBaseProps extends DataAttributes_2 {
5579
+ /** Module avatar shown in the card header. */
5580
+ module?: ModuleId;
5581
+ /** Header label describing the proposal type. */
5582
+ heading: string;
5583
+ /** Main proposal title. */
5584
+ title: string;
5585
+ /** Optional secondary metadata line. */
5586
+ subtitle?: string;
5587
+ /** Proposal details. Line breaks are preserved when expanded. */
5588
+ description: string;
5589
+ /** Label for the inline expansion control. */
5590
+ seeMoreLabel: string;
5591
+ /** Maximum number of characters shown before expansion. */
5592
+ maxCollapsedDescriptionLength?: number;
5593
+ }
5594
+
5595
+ export declare interface F0AiProposalCardHiddenActions {
5596
+ /** Hide the action footer and omit action props. */
5597
+ showActions: false;
5598
+ }
5599
+
5600
+ export declare type F0AiProposalCardProps = F0AiProposalCardBaseProps & (F0AiProposalCardActions | F0AiProposalCardHiddenActions);
5601
+
5561
5602
  export declare const F0Alert: WithDataTestIdReturnType_3<({ title, description, action, link, icon, variant, onClose, }: F0AlertProps) => JSX_2.Element>;
5562
5603
 
5563
5604
  export declare interface F0AlertProps {
@@ -14396,6 +14437,11 @@ declare module "gridstack" {
14396
14437
  }
14397
14438
 
14398
14439
 
14440
+ declare namespace Calendar {
14441
+ var displayName: string;
14442
+ }
14443
+
14444
+
14399
14445
  declare module "@tiptap/core" {
14400
14446
  interface Commands<ReturnType> {
14401
14447
  aiBlock: {
@@ -14408,9 +14454,8 @@ declare module "@tiptap/core" {
14408
14454
 
14409
14455
  declare module "@tiptap/core" {
14410
14456
  interface Commands<ReturnType> {
14411
- enhanceHighlight: {
14412
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
14413
- clearEnhanceHighlight: () => ReturnType;
14457
+ moodTracker: {
14458
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
14414
14459
  };
14415
14460
  }
14416
14461
  }
@@ -14418,8 +14463,9 @@ declare module "@tiptap/core" {
14418
14463
 
14419
14464
  declare module "@tiptap/core" {
14420
14465
  interface Commands<ReturnType> {
14421
- moodTracker: {
14422
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
14466
+ enhanceHighlight: {
14467
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
14468
+ clearEnhanceHighlight: () => ReturnType;
14423
14469
  };
14424
14470
  }
14425
14471
  }
@@ -14443,8 +14489,3 @@ declare module "@tiptap/core" {
14443
14489
  };
14444
14490
  }
14445
14491
  }
14446
-
14447
-
14448
- declare namespace Calendar {
14449
- var displayName: string;
14450
- }
package/dist/f0.js CHANGED
@@ -2,12 +2,12 @@ import { fc as Pr, ad as se, bq as zn, t as I, w as mt, fd as Hr, v as xt, dd as
2
2
  import { gw as Qf, d as Kf, bX as Xf, l as Yf, gI as Jf, aU as Zf, k as em, F as tm, a as nm, C as im, go as rm, b as sm, bG as om, bb as am, bH as lm, g6 as cm, aM as dm, bp as um, ap as hm, g7 as fm, ay as mm, g8 as gm, gc as pm, gd as vm, ge as bm, gN as ym, b1 as xm, n as wm, aA as Cm, by as Nm, gr as Sm, b5 as Em, gs as _m, gu as Dm, gv as km, cB as Rm, cz as Tm, e as Fm, h as Lm, gx as Am, cl as zm, cm as Om, g5 as Mm, gM as Im, a_ as Bm, cA as Pm, gt as Hm, cn as Wm, bV as qm, gO as $m, g9 as Gm, ga as jm, gb as Um, co as Vm, gH as Qm, gC as Km, gq as Xm, gk as Ym, gj as Jm, gi as Zm, gF as eg, gB as tg, aY as ng, ck as ig, ch as rg, cj as sg, cg as og, gl as ag, gA as lg, gz as cg, gm as dg, c3 as ug, ci as hg, gg as fg, gh as mg, gn as gg, g as pg, c as vg, gy as bg, gD as yg, gJ as xg, gK as wg, gL as Cg, aW as Ng, gp as Sg, gf as Eg, i as _g, gE as Dg, br as kg, aT as Rg, gG as Tg, j as Fg, f as Lg, gP as Ag } from "./useDataCollectionSource-BNMQa-mV.js";
3
3
  import { jsx as l, jsxs as y, Fragment as we } from "react/jsx-runtime";
4
4
  import le, { forwardRef as We, useRef as W, useImperativeHandle as Wa, Children as xn, createContext as Ke, useContext as ke, useState as j, useMemo as P, useEffect as V, useCallback as B, useLayoutEffect as ui, createElement as an, isValidElement as os, Fragment as qa, memo as as, useReducer as $a, cloneElement as Ga, useId as ls } from "react";
5
- import { r as ja, t as Ua, v as cs, w as Va, x as Qa, y as Wn, z as Ka, B as Fi, E as Xa, G as Ya, H as Ja, I as ds, J as wn, K as Li, L as us, N as Za, O as hs, P as sr, Q as el } from "./types-zUkcMLoO.js";
6
- import { A as Og, U as Mg, C as Ig, c as Bg, D as Pg, a as Hg, b as Wg, S as qg, e as $g, f as Gg, g as jg, h as Ug, p as Vg, l as Qg, $ as Kg, m as Xg, R as Yg, a0 as Jg, n as Zg, i as ep, a5 as tp, F as np, d as ip, V as rp, W as sp, X as op, Y as ap, M as lp, Z as cp, _ as dp, k as up, j as hp, T as fp, q as mp, a3 as gp, a2 as pp, o as vp, s as bp, u as yp, a4 as xp, a6 as wp, a1 as Cp } from "./types-zUkcMLoO.js";
5
+ import { t as ja, v as Ua, w as cs, x as Va, y as Qa, z as Wn, B as Ka, E as Fi, G as Xa, H as Ya, I as Ja, J as ds, K as wn, L as Li, N as us, O as Za, P as hs, Q as sr, R as el } from "./F0AiProposalCard-Dnuvkpg2.js";
6
+ import { A as Og, V as Mg, C as Ig, c as Bg, D as Pg, a as Hg, b as Wg, T as qg, e as $g, f as Gg, g as jg, h as Ug, p as Vg, l as Qg, r as Kg, a0 as Xg, m as Yg, S as Jg, a1 as Zg, n as ep, i as tp, a6 as np, F as ip, d as rp, W as sp, X as op, Y as ap, Z as lp, M as cp, _ as dp, $ as up, k as hp, j as fp, U as mp, q as gp, a4 as pp, a3 as vp, o as bp, s as yp, u as xp, a5 as wp, a7 as Cp, a2 as Np } from "./F0AiProposalCard-Dnuvkpg2.js";
7
7
  import { createPortal as fs, unstable_batchedUpdates as ln } from "react-dom";
8
8
  import { C as tl, D as nl, y as il, j as rl } from "./index-C3C31VSu.js";
9
- import { l as Sp, m as Ep, n as _p, s as Dp, F as kp, o as Rp, v as Tp, w as Fp, N as Lp, x as Ap, p as zp, P as Op, r as Mp, R as Ip, q as Bp, u as Pp, t as Hp } from "./index-C3C31VSu.js";
10
- import { defaultTranslations as qp } from "./i18n-provider-defaults.js";
9
+ import { l as Ep, m as _p, n as Dp, s as kp, F as Rp, o as Tp, v as Fp, w as Lp, N as Ap, x as zp, p as Op, P as Mp, r as Ip, R as Bp, q as Pp, u as Hp, t as Wp } from "./index-C3C31VSu.js";
10
+ import { defaultTranslations as $p } from "./i18n-provider-defaults.js";
11
11
  import './f0.css';const sl = {
12
12
  xs: 1,
13
13
  sm: 2,
@@ -15330,17 +15330,17 @@ const Bf = se(Kh), Pf = ({
15330
15330
  };
15331
15331
  export {
15332
15332
  Og as AiChatTranslationsProvider,
15333
- Sp as AreaChart,
15333
+ Ep as AreaChart,
15334
15334
  Qf as Await,
15335
- Ep as BarChart,
15335
+ _p as BarChart,
15336
15336
  Mg as BarChartSkeleton,
15337
15337
  Kf as CanvasCard,
15338
15338
  Xf as CardSelectableContainer,
15339
- _p as CategoryBarChart,
15339
+ Dp as CategoryBarChart,
15340
15340
  Yf as ChatSpinner,
15341
15341
  bn as Chip,
15342
15342
  Ig as CloseCanvasButton,
15343
- Dp as ComboChart,
15343
+ kp as ComboChart,
15344
15344
  sf as Dashboard,
15345
15345
  Bg as DashboardCanvasProvider,
15346
15346
  Pg as DashboardCard,
@@ -15363,13 +15363,14 @@ export {
15363
15363
  sm as F0AiFullscreenChat,
15364
15364
  Vg as F0AiInsightCard,
15365
15365
  Qg as F0AiMask,
15366
- Kg as F0Alert,
15366
+ Kg as F0AiProposalCard,
15367
+ Xg as F0Alert,
15367
15368
  Gf as F0AnalyticsDashboard,
15368
- Xg as F0AuraVoiceAnimation,
15369
+ Yg as F0AuraVoiceAnimation,
15369
15370
  Pa as F0Avatar,
15370
15371
  om as F0AvatarAlert,
15371
15372
  am as F0AvatarCompany,
15372
- kp as F0AvatarDate,
15373
+ Rp as F0AvatarDate,
15373
15374
  lm as F0AvatarEmoji,
15374
15375
  cm as F0AvatarFile,
15375
15376
  dm as F0AvatarIcon,
@@ -15386,28 +15387,28 @@ export {
15386
15387
  pm as F0Card,
15387
15388
  Gt as F0Checkbox,
15388
15389
  xf as F0ChipList,
15389
- Yg as F0DataChart,
15390
+ Jg as F0DataChart,
15390
15391
  vm as F0DatePicker,
15391
15392
  Pf as F0DemoCard,
15392
15393
  Ta as F0Dialog,
15393
15394
  Na as F0DialogContext,
15394
15395
  bm as F0DialogProvider,
15395
- Jg as F0DurationInput,
15396
+ Zg as F0DurationInput,
15396
15397
  ym as F0EventCatcherProvider,
15397
15398
  Hf as F0FAQCard,
15398
15399
  Nf as F0FilterPickerContent,
15399
15400
  Ef as F0Form,
15400
15401
  Se as F0FormField,
15401
15402
  Ff as F0GridStack,
15402
- Zg as F0HILActionConfirmation,
15403
+ ep as F0HILActionConfirmation,
15403
15404
  Df as F0Heading,
15404
15405
  oe as F0Icon,
15405
15406
  xm as F0Link,
15406
- ep as F0MessageCreditsWarning,
15407
+ tp as F0MessageCreditsWarning,
15407
15408
  Wf as F0ModuleCard,
15408
15409
  ga as F0OneIcon,
15409
15410
  wm as F0OneSwitch,
15410
- tp as F0Provider,
15411
+ np as F0Provider,
15411
15412
  $f as F0QuestionCardMultiStep,
15412
15413
  Cm as F0Select,
15413
15414
  Lf as F0TableOfContentPopover,
@@ -15427,36 +15428,36 @@ export {
15427
15428
  Tm as FileItem,
15428
15429
  Fm as FormCard,
15429
15430
  Lm as FormCardValueFormatterProvider,
15430
- np as FormContent,
15431
- ip as FormHeader,
15432
- rp as FunnelChartSkeleton,
15431
+ ip as FormContent,
15432
+ rp as FormHeader,
15433
+ sp as FunnelChartSkeleton,
15433
15434
  Am as GROUP_ID_SYMBOL,
15434
- sp as GaugeChartSkeleton,
15435
- op as HeatmapChartSkeleton,
15435
+ op as GaugeChartSkeleton,
15436
+ ap as HeatmapChartSkeleton,
15436
15437
  cf as HomeLayout,
15437
15438
  of as Layout,
15438
- Rp as LineChart,
15439
- ap as LineChartSkeleton,
15440
- lp as MessageSources,
15441
- Tp as NotesTextEditor,
15442
- Fp as NotesTextEditorPatchTargetNotFoundError,
15443
- Lp as NotesTextEditorSkeleton,
15444
- Ap as NotesTextEditorUnsupportedPatchTypeError,
15439
+ Tp as LineChart,
15440
+ lp as LineChartSkeleton,
15441
+ cp as MessageSources,
15442
+ Fp as NotesTextEditor,
15443
+ Lp as NotesTextEditorPatchTargetNotFoundError,
15444
+ Ap as NotesTextEditorSkeleton,
15445
+ zp as NotesTextEditorUnsupportedPatchTypeError,
15445
15446
  zm as OneCalendar,
15446
15447
  Om as OneCalendarInternal,
15447
15448
  nr as OneEllipsis,
15448
15449
  ns as OneEmptyState,
15449
15450
  Mm as OneFilterPicker,
15450
- zp as PieChart,
15451
- cp as PieChartSkeleton,
15451
+ Op as PieChart,
15452
+ dp as PieChartSkeleton,
15452
15453
  Im as PrivacyModeProvider,
15453
15454
  $h as ProductBlankslate,
15454
- Op as ProductCard,
15455
+ Mp as ProductCard,
15455
15456
  Of as ProductModal,
15456
15457
  Vh as ProductWidget,
15457
- Mp as ProgressBarChart,
15458
- Ip as RadarChart,
15459
- dp as RadarChartSkeleton,
15458
+ Ip as ProgressBarChart,
15459
+ Bp as RadarChart,
15460
+ up as RadarChartSkeleton,
15460
15461
  Bm as RichTextDisplay,
15461
15462
  Pm as RichTextEditor,
15462
15463
  af as StandardLayout,
@@ -15472,11 +15473,11 @@ export {
15472
15473
  If as UpsellingBanner,
15473
15474
  Ti as UpsellingButton,
15474
15475
  Bf as UpsellingPopover,
15475
- Bp as VerticalBarChart,
15476
+ Pp as VerticalBarChart,
15476
15477
  Wm as WeekStartDay,
15477
15478
  qm as actionBarStatuses,
15478
- up as actionItemStatuses,
15479
- hp as aiTranslations,
15479
+ hp as actionItemStatuses,
15480
+ fp as aiTranslations,
15480
15481
  Cf as alertVariantOptions,
15481
15482
  rf as avatarVariants,
15482
15483
  $m as buildTranslations,
@@ -15490,10 +15491,10 @@ export {
15490
15491
  Gm as cardImageAspectRatios,
15491
15492
  jm as cardImageFits,
15492
15493
  Um as cardImageSizes,
15493
- fp as chartColorTokens,
15494
+ mp as chartColorTokens,
15494
15495
  Vm as chipVariants,
15495
15496
  Ch as computeSectionEndIds,
15496
- mp as contentTypes,
15497
+ gp as contentTypes,
15497
15498
  Qm as createAtlaskitDriver,
15498
15499
  Km as createDataSourceDefinition,
15499
15500
  Sf as createF0FormDefinitionTester,
@@ -15502,7 +15503,7 @@ export {
15502
15503
  _l as createPageLayoutBlockGroup,
15503
15504
  jf as dataCollectionLocalStorageHandler,
15504
15505
  wf as datepickerSizes,
15505
- qp as defaultTranslations,
15506
+ $p as defaultTranslations,
15506
15507
  Xm as defineAvailableForm,
15507
15508
  nu as describeFormSchema,
15508
15509
  Ym as durationInputSizes,
@@ -15512,7 +15513,7 @@ export {
15512
15513
  Le as f0FormField,
15513
15514
  Zm as fieldsToSeconds,
15514
15515
  xh as flattenElements,
15515
- gp as generateAnchorId,
15516
+ pp as generateAnchorId,
15516
15517
  eg as getAnimationVariants,
15517
15518
  tg as getDataSourcePaginationType,
15518
15519
  ng as getEmojiLabel,
@@ -15520,7 +15521,7 @@ export {
15520
15521
  ig as getGranularityDefinition,
15521
15522
  rg as getGranularityDefinitions,
15522
15523
  sg as getGranularitySimpleDefinition,
15523
- pp as getSchemaDefinition,
15524
+ vp as getSchemaDefinition,
15524
15525
  og as granularityDefinitions,
15525
15526
  ag as hasF0Config,
15526
15527
  na as inferFieldType,
@@ -15530,19 +15531,19 @@ export {
15530
15531
  dg as isZodType,
15531
15532
  vf as linkVariants,
15532
15533
  ug as modules,
15533
- vp as oneIconSizes,
15534
- Pp as predefinedPresets,
15534
+ bp as oneIconSizes,
15535
+ Hp as predefinedPresets,
15535
15536
  hg as rangeSeparator,
15536
15537
  Tr as reconstructElements,
15537
- bp as savedDashboardConfigStore,
15538
+ yp as savedDashboardConfigStore,
15538
15539
  fg as secondsToFields,
15539
15540
  mg as secondsToVisibleFields,
15540
- Hp as selectSizes,
15541
+ Wp as selectSizes,
15541
15542
  df as tagDotColors,
15542
15543
  kf as timelineRowStatuses,
15543
15544
  gg as unwrapZodSchema,
15544
15545
  pg as useAiChat,
15545
- yp as useAiChatTranslations,
15546
+ xp as useAiChatTranslations,
15546
15547
  vg as useCanvasEntity,
15547
15548
  bg as useData,
15548
15549
  yg as useDataSource,
@@ -15553,13 +15554,13 @@ export {
15553
15554
  Sg as useF0AiFormRegistry,
15554
15555
  Eg as useF0Dialog,
15555
15556
  Fi as useF0Form,
15556
- xp as useF0FormDefinition,
15557
+ wp as useF0FormDefinition,
15557
15558
  _g as useFormCardValueFormatter,
15558
- wp as useFormComponent,
15559
+ Cp as useFormComponent,
15559
15560
  Dg as useGroups,
15560
15561
  kg as usePrivacyMode,
15561
15562
  Rg as useReducedMotion,
15562
- Cp as useSchemaDefinition,
15563
+ Np as useSchemaDefinition,
15563
15564
  Tg as useSelectable,
15564
15565
  Fg as useSetFormCardValueFormatter,
15565
15566
  Lg as useToolCallId,
@@ -831,6 +831,11 @@ declare module "gridstack" {
831
831
  }
832
832
 
833
833
 
834
+ declare namespace Calendar {
835
+ var displayName: string;
836
+ }
837
+
838
+
834
839
  declare module "@tiptap/core" {
835
840
  interface Commands<ReturnType> {
836
841
  aiBlock: {
@@ -843,9 +848,8 @@ declare module "@tiptap/core" {
843
848
 
844
849
  declare module "@tiptap/core" {
845
850
  interface Commands<ReturnType> {
846
- enhanceHighlight: {
847
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
848
- clearEnhanceHighlight: () => ReturnType;
851
+ moodTracker: {
852
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
849
853
  };
850
854
  }
851
855
  }
@@ -853,8 +857,9 @@ declare module "@tiptap/core" {
853
857
 
854
858
  declare module "@tiptap/core" {
855
859
  interface Commands<ReturnType> {
856
- moodTracker: {
857
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
860
+ enhanceHighlight: {
861
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
862
+ clearEnhanceHighlight: () => ReturnType;
858
863
  };
859
864
  }
860
865
  }
@@ -878,8 +883,3 @@ declare module "@tiptap/core" {
878
883
  };
879
884
  }
880
885
  }
881
-
882
-
883
- declare namespace Calendar {
884
- var displayName: string;
885
- }