@factorialco/f0-react 1.472.1 → 1.473.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-DP4kUKby.js → F0AiChat-BKdq2rXV.js} +19387 -19302
- package/dist/ai.d.ts +15 -11
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +15 -11
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +67 -17
- package/dist/f0.js +145 -144
- package/dist/i18n-provider-defaults.d.ts +15 -11
- package/dist/i18n-provider-defaults.js +5 -1
- package/dist/{index-Bav926mJ.js → index-DhVbXh6Q.js} +1 -1
- package/dist/styles.css +1 -1
- package/dist/{types-CPaHAyIU.js → types-KASHTVFG.js} +1 -1
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1920,6 +1920,10 @@ export declare const defaultTranslations: {
|
|
|
1920
1920
|
readonly funnel: "Funnel";
|
|
1921
1921
|
readonly pieChart: "Pie";
|
|
1922
1922
|
readonly table: "Table";
|
|
1923
|
+
readonly emptyState: {
|
|
1924
|
+
readonly title: "No data available";
|
|
1925
|
+
readonly description: "Try a different date or fewer filters";
|
|
1926
|
+
};
|
|
1923
1927
|
};
|
|
1924
1928
|
readonly select: {
|
|
1925
1929
|
readonly noResults: "No results found";
|
|
@@ -3374,11 +3378,16 @@ declare module "gridstack" {
|
|
|
3374
3378
|
}
|
|
3375
3379
|
|
|
3376
3380
|
|
|
3381
|
+
declare namespace Calendar {
|
|
3382
|
+
var displayName: string;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
|
|
3377
3386
|
declare module "@tiptap/core" {
|
|
3378
3387
|
interface Commands<ReturnType> {
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3388
|
+
aiBlock: {
|
|
3389
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
3390
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
3382
3391
|
};
|
|
3383
3392
|
}
|
|
3384
3393
|
}
|
|
@@ -3386,9 +3395,9 @@ declare module "@tiptap/core" {
|
|
|
3386
3395
|
|
|
3387
3396
|
declare module "@tiptap/core" {
|
|
3388
3397
|
interface Commands<ReturnType> {
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3398
|
+
enhanceHighlight: {
|
|
3399
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
3400
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
3392
3401
|
};
|
|
3393
3402
|
}
|
|
3394
3403
|
}
|
|
@@ -3421,8 +3430,3 @@ declare module "@tiptap/core" {
|
|
|
3421
3430
|
};
|
|
3422
3431
|
}
|
|
3423
3432
|
}
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
declare namespace Calendar {
|
|
3427
|
-
var displayName: string;
|
|
3428
|
-
}
|
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-BKdq2rXV.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-KASHTVFG.js";
|
|
4
4
|
export {
|
|
5
5
|
v as AiChatTranslationsProvider,
|
|
6
6
|
t as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3252,6 +3252,10 @@ declare const defaultTranslations: {
|
|
|
3252
3252
|
readonly funnel: "Funnel";
|
|
3253
3253
|
readonly pieChart: "Pie";
|
|
3254
3254
|
readonly table: "Table";
|
|
3255
|
+
readonly emptyState: {
|
|
3256
|
+
readonly title: "No data available";
|
|
3257
|
+
readonly description: "Try a different date or fewer filters";
|
|
3258
|
+
};
|
|
3255
3259
|
};
|
|
3256
3260
|
readonly select: {
|
|
3257
3261
|
readonly noResults: "No results found";
|
|
@@ -8124,11 +8128,16 @@ declare module "gridstack" {
|
|
|
8124
8128
|
}
|
|
8125
8129
|
|
|
8126
8130
|
|
|
8131
|
+
declare namespace Calendar {
|
|
8132
|
+
var displayName: string;
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8135
|
+
|
|
8127
8136
|
declare module "@tiptap/core" {
|
|
8128
8137
|
interface Commands<ReturnType> {
|
|
8129
|
-
|
|
8130
|
-
|
|
8131
|
-
|
|
8138
|
+
aiBlock: {
|
|
8139
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
8140
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
8132
8141
|
};
|
|
8133
8142
|
}
|
|
8134
8143
|
}
|
|
@@ -8136,9 +8145,9 @@ declare module "@tiptap/core" {
|
|
|
8136
8145
|
|
|
8137
8146
|
declare module "@tiptap/core" {
|
|
8138
8147
|
interface Commands<ReturnType> {
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8148
|
+
enhanceHighlight: {
|
|
8149
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8150
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8142
8151
|
};
|
|
8143
8152
|
}
|
|
8144
8153
|
}
|
|
@@ -8171,8 +8180,3 @@ declare module "@tiptap/core" {
|
|
|
8171
8180
|
};
|
|
8172
8181
|
}
|
|
8173
8182
|
}
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
declare namespace Calendar {
|
|
8177
|
-
var displayName: string;
|
|
8178
|
-
}
|
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-BKdq2rXV.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-BKdq2rXV.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, _ as Rd, u as Bd, t as $d } from "./index-
|
|
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-DhVbXh6Q.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, _ as Rd, u as Bd, t as $d } from "./index-DhVbXh6Q.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" }]
|
package/dist/f0.d.ts
CHANGED
|
@@ -3367,6 +3367,19 @@ declare type DataAttributes_2 = {
|
|
|
3367
3367
|
[key: `data-${string}`]: string | undefined;
|
|
3368
3368
|
};
|
|
3369
3369
|
|
|
3370
|
+
/**
|
|
3371
|
+
* Resolves an `F0DataChartEmptyStateProps` config (i18n defaults + overrides
|
|
3372
|
+
* + render-prop) into rendered output. Used internally by `F0DataChart` and
|
|
3373
|
+
* reused by dashboard wrappers when data is absent.
|
|
3374
|
+
*/
|
|
3375
|
+
export declare const DataChartEmptyStateView: ({ chartType, emptyState, }: DataChartEmptyStateViewProps) => JSX_2.Element;
|
|
3376
|
+
|
|
3377
|
+
declare interface DataChartEmptyStateViewProps {
|
|
3378
|
+
/** The chart variant — drives the background skeleton illustration. */
|
|
3379
|
+
chartType: F0DataChartProps["type"];
|
|
3380
|
+
emptyState?: F0DataChartEmptyStateProps;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3370
3383
|
declare type DataCollectionBaseFetchOptions<Filters extends FiltersDefinition, NavigationFilters extends NavigationFiltersDefinition> = BaseFetchOptions<Filters> & DataCollectionExtendFetchOptions<NavigationFilters>;
|
|
3371
3384
|
|
|
3372
3385
|
/**
|
|
@@ -4395,6 +4408,10 @@ export declare const defaultTranslations: {
|
|
|
4395
4408
|
readonly funnel: "Funnel";
|
|
4396
4409
|
readonly pieChart: "Pie";
|
|
4397
4410
|
readonly table: "Table";
|
|
4411
|
+
readonly emptyState: {
|
|
4412
|
+
readonly title: "No data available";
|
|
4413
|
+
readonly description: "Try a different date or fewer filters";
|
|
4414
|
+
};
|
|
4398
4415
|
};
|
|
4399
4416
|
readonly select: {
|
|
4400
4417
|
readonly noResults: "No results found";
|
|
@@ -6206,7 +6223,7 @@ export declare interface F0DataChartBarSeries {
|
|
|
6206
6223
|
color?: ChartColorToken;
|
|
6207
6224
|
}
|
|
6208
6225
|
|
|
6209
|
-
declare interface F0DataChartBaseProps {
|
|
6226
|
+
declare interface F0DataChartBaseProps extends F0DataChartCommonProps {
|
|
6210
6227
|
/** Labels for the category axis (one per data point) */
|
|
6211
6228
|
categories: string[];
|
|
6212
6229
|
/** Show the legend below the chart. @default true */
|
|
@@ -6223,6 +6240,39 @@ declare interface F0DataChartBaseProps {
|
|
|
6223
6240
|
echartsOptions?: Partial<echarts_2.EChartsOption>;
|
|
6224
6241
|
}
|
|
6225
6242
|
|
|
6243
|
+
/**
|
|
6244
|
+
* Props shared by every `F0DataChart` variant.
|
|
6245
|
+
*/
|
|
6246
|
+
declare interface F0DataChartCommonProps {
|
|
6247
|
+
/** Customize or opt out of the empty state shown when data is empty. */
|
|
6248
|
+
emptyState?: F0DataChartEmptyStateProps;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
/**
|
|
6252
|
+
* Configuration for the empty state shown when a chart has no data.
|
|
6253
|
+
*
|
|
6254
|
+
* `F0DataChart` auto-detects empty data across all variants and renders a
|
|
6255
|
+
* default empty state. Use this prop to customize the copy, fully replace
|
|
6256
|
+
* the rendered UI via `render`, or skip detection via `disabled`.
|
|
6257
|
+
*/
|
|
6258
|
+
export declare interface F0DataChartEmptyStateProps {
|
|
6259
|
+
/** Override the default headline. */
|
|
6260
|
+
title?: string;
|
|
6261
|
+
/** Override the default supporting copy. */
|
|
6262
|
+
description?: string;
|
|
6263
|
+
/**
|
|
6264
|
+
* Render-prop escape hatch — when provided, replaces the entire empty
|
|
6265
|
+
* state UI. Still gated by the empty-data detection.
|
|
6266
|
+
*/
|
|
6267
|
+
render?: () => ReactNode;
|
|
6268
|
+
/**
|
|
6269
|
+
* Skip empty-data detection and render the chart as usual. Use when zero
|
|
6270
|
+
* values are legitimate (e.g. a "0 errors per day" timeline).
|
|
6271
|
+
* @default false
|
|
6272
|
+
*/
|
|
6273
|
+
disabled?: boolean;
|
|
6274
|
+
}
|
|
6275
|
+
|
|
6226
6276
|
/**
|
|
6227
6277
|
* A single data point in a funnel chart series.
|
|
6228
6278
|
* Each point has a value and a stage name.
|
|
@@ -6242,7 +6292,7 @@ export declare interface F0DataChartFunnelDataPoint {
|
|
|
6242
6292
|
* Funnels do NOT use category/value axes — stage names come from the data
|
|
6243
6293
|
* points themselves. This interface is separate from `F0DataChartBaseProps`.
|
|
6244
6294
|
*/
|
|
6245
|
-
export declare interface F0DataChartFunnelProps {
|
|
6295
|
+
export declare interface F0DataChartFunnelProps extends F0DataChartCommonProps {
|
|
6246
6296
|
/** Chart type */
|
|
6247
6297
|
type: "funnel";
|
|
6248
6298
|
/** The funnel series to render */
|
|
@@ -6292,7 +6342,7 @@ export declare interface F0DataChartFunnelSeries {
|
|
|
6292
6342
|
*
|
|
6293
6343
|
* A single-value gauge indicator — no axes, no legend.
|
|
6294
6344
|
*/
|
|
6295
|
-
export declare interface F0DataChartGaugeProps {
|
|
6345
|
+
export declare interface F0DataChartGaugeProps extends F0DataChartCommonProps {
|
|
6296
6346
|
/** Chart type */
|
|
6297
6347
|
type: "gauge";
|
|
6298
6348
|
/** Current value */
|
|
@@ -6320,7 +6370,7 @@ export declare interface F0DataChartGaugeProps {
|
|
|
6320
6370
|
* Uses two category axes (x for columns, y for rows) and a visualMap for
|
|
6321
6371
|
* value→color mapping.
|
|
6322
6372
|
*/
|
|
6323
|
-
export declare interface F0DataChartHeatmapProps {
|
|
6373
|
+
export declare interface F0DataChartHeatmapProps extends F0DataChartCommonProps {
|
|
6324
6374
|
/** Chart type */
|
|
6325
6375
|
type: "heatmap";
|
|
6326
6376
|
/** Column labels (x-axis) */
|
|
@@ -6406,7 +6456,7 @@ export declare interface F0DataChartPieDataPoint {
|
|
|
6406
6456
|
* Pies do NOT use category/value axes — segment names come from the data
|
|
6407
6457
|
* points themselves. This interface is separate from `F0DataChartBaseProps`.
|
|
6408
6458
|
*/
|
|
6409
|
-
export declare interface F0DataChartPieProps {
|
|
6459
|
+
export declare interface F0DataChartPieProps extends F0DataChartCommonProps {
|
|
6410
6460
|
/** Chart type */
|
|
6411
6461
|
type: "pie";
|
|
6412
6462
|
/** The pie series to render */
|
|
@@ -6460,7 +6510,7 @@ export declare interface F0DataChartRadarIndicator {
|
|
|
6460
6510
|
*
|
|
6461
6511
|
* Radar charts use a polar coordinate system — no cartesian axes.
|
|
6462
6512
|
*/
|
|
6463
|
-
export declare interface F0DataChartRadarProps {
|
|
6513
|
+
export declare interface F0DataChartRadarProps extends F0DataChartCommonProps {
|
|
6464
6514
|
/** Chart type */
|
|
6465
6515
|
type: "radar";
|
|
6466
6516
|
/** Axes of the radar — defines the dimensions to compare */
|
|
@@ -13694,11 +13744,16 @@ declare module "gridstack" {
|
|
|
13694
13744
|
}
|
|
13695
13745
|
|
|
13696
13746
|
|
|
13747
|
+
declare namespace Calendar {
|
|
13748
|
+
var displayName: string;
|
|
13749
|
+
}
|
|
13750
|
+
|
|
13751
|
+
|
|
13697
13752
|
declare module "@tiptap/core" {
|
|
13698
13753
|
interface Commands<ReturnType> {
|
|
13699
|
-
|
|
13700
|
-
|
|
13701
|
-
|
|
13754
|
+
aiBlock: {
|
|
13755
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
13756
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
13702
13757
|
};
|
|
13703
13758
|
}
|
|
13704
13759
|
}
|
|
@@ -13706,9 +13761,9 @@ declare module "@tiptap/core" {
|
|
|
13706
13761
|
|
|
13707
13762
|
declare module "@tiptap/core" {
|
|
13708
13763
|
interface Commands<ReturnType> {
|
|
13709
|
-
|
|
13710
|
-
|
|
13711
|
-
|
|
13764
|
+
enhanceHighlight: {
|
|
13765
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
13766
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
13712
13767
|
};
|
|
13713
13768
|
}
|
|
13714
13769
|
}
|
|
@@ -13741,8 +13796,3 @@ declare module "@tiptap/core" {
|
|
|
13741
13796
|
};
|
|
13742
13797
|
}
|
|
13743
13798
|
}
|
|
13744
|
-
|
|
13745
|
-
|
|
13746
|
-
declare namespace Calendar {
|
|
13747
|
-
var displayName: string;
|
|
13748
|
-
}
|