@factorialco/f0-react 1.394.0 → 1.394.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/{F0HILActionConfirmation-oROEEYv_.js → F0HILActionConfirmation-DH49_Gi0.js} +8 -4
- package/dist/ai.d.ts +16 -16
- package/dist/ai.js +1 -1
- package/dist/experimental.d.ts +13 -13
- package/dist/f0.d.ts +16 -16
- package/dist/f0.js +1 -1
- package/dist/i18n-provider-defaults.d.ts +13 -13
- package/package.json +1 -1
|
@@ -714,10 +714,14 @@ void main() {
|
|
|
714
714
|
vUV = aUV;
|
|
715
715
|
gl_Position = vec4(aPosition, 0.0, 1.0);
|
|
716
716
|
}`, $t = [
|
|
717
|
-
"rgb(
|
|
718
|
-
|
|
719
|
-
"rgb(
|
|
720
|
-
|
|
717
|
+
"rgb(229, 25, 67)",
|
|
718
|
+
// #E51943 red
|
|
719
|
+
"rgb(229, 86, 25)",
|
|
720
|
+
// #E55619 orange
|
|
721
|
+
"rgb(229, 25, 67)",
|
|
722
|
+
// #E51943 red
|
|
723
|
+
"rgb(161, 173, 229)"
|
|
724
|
+
// #A1ADE5 light blue
|
|
721
725
|
];
|
|
722
726
|
function qt(t) {
|
|
723
727
|
const e = t.match(/rgb\((\d+),\s*(\d+),\s*(\d+)\)/);
|
package/dist/ai.d.ts
CHANGED
|
@@ -288,7 +288,7 @@ export declare const ChatSpinner: ForwardRefExoticComponent<Omit<SVGProps<SVGSVG
|
|
|
288
288
|
* CSS RGB color string type
|
|
289
289
|
* @example 'rgb(255, 0, 0)' or 'rgb(255,0,0)'
|
|
290
290
|
*/
|
|
291
|
-
declare type CSSRgbString = `rgb(${number}, ${number}, ${number})` | `rgb(${number},${number},${number})`;
|
|
291
|
+
export declare type CSSRgbString = `rgb(${number}, ${number}, ${number})` | `rgb(${number},${number},${number})`;
|
|
292
292
|
|
|
293
293
|
export declare const defaultTranslations: {
|
|
294
294
|
readonly countries: {
|
|
@@ -1325,7 +1325,7 @@ declare type Join<T extends string[], D extends string> = T extends [] ? never :
|
|
|
1325
1325
|
|
|
1326
1326
|
export declare function Li({ children, ...props }: React.HTMLAttributes<HTMLLIElement>): JSX_2.Element;
|
|
1327
1327
|
|
|
1328
|
-
declare type MaskOptions = {
|
|
1328
|
+
export declare type MaskOptions = {
|
|
1329
1329
|
/**
|
|
1330
1330
|
* The width of the Mask element.
|
|
1331
1331
|
* @default 600
|
|
@@ -1351,7 +1351,7 @@ declare type MaskOptions = {
|
|
|
1351
1351
|
mode?: "dark" | "light";
|
|
1352
1352
|
/**
|
|
1353
1353
|
* Color list.
|
|
1354
|
-
* @default ['rgb(
|
|
1354
|
+
* @default ['rgb(229, 25, 67)', 'rgb(229, 86, 25)', 'rgb(229, 25, 67)', 'rgb(161, 173, 229)']
|
|
1355
1355
|
* @note The color list must be specified with 4 colors in an array, formatted as rgb color strings.
|
|
1356
1356
|
*/
|
|
1357
1357
|
colors?: [CSSRgbString, CSSRgbString, CSSRgbString, CSSRgbString];
|
|
@@ -1525,8 +1525,13 @@ declare module "gridstack" {
|
|
|
1525
1525
|
}
|
|
1526
1526
|
|
|
1527
1527
|
|
|
1528
|
-
declare
|
|
1529
|
-
|
|
1528
|
+
declare module "@tiptap/core" {
|
|
1529
|
+
interface Commands<ReturnType> {
|
|
1530
|
+
enhanceHighlight: {
|
|
1531
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
1532
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
1533
|
+
};
|
|
1534
|
+
}
|
|
1530
1535
|
}
|
|
1531
1536
|
|
|
1532
1537
|
|
|
@@ -1542,9 +1547,8 @@ declare module "@tiptap/core" {
|
|
|
1542
1547
|
|
|
1543
1548
|
declare module "@tiptap/core" {
|
|
1544
1549
|
interface Commands<ReturnType> {
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
1550
|
+
moodTracker: {
|
|
1551
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
1548
1552
|
};
|
|
1549
1553
|
}
|
|
1550
1554
|
}
|
|
@@ -1552,8 +1556,8 @@ declare module "@tiptap/core" {
|
|
|
1552
1556
|
|
|
1553
1557
|
declare module "@tiptap/core" {
|
|
1554
1558
|
interface Commands<ReturnType> {
|
|
1555
|
-
|
|
1556
|
-
|
|
1559
|
+
transcript: {
|
|
1560
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1557
1561
|
};
|
|
1558
1562
|
}
|
|
1559
1563
|
}
|
|
@@ -1570,10 +1574,6 @@ declare module "@tiptap/core" {
|
|
|
1570
1574
|
}
|
|
1571
1575
|
|
|
1572
1576
|
|
|
1573
|
-
declare
|
|
1574
|
-
|
|
1575
|
-
transcript: {
|
|
1576
|
-
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1577
|
-
};
|
|
1578
|
-
}
|
|
1577
|
+
declare namespace Calendar {
|
|
1578
|
+
var displayName: string;
|
|
1579
1579
|
}
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { A as e, B as t, C as i, q as n, E as o, h as r, F as l, a as A, D as c, i as F, b as u, j as h, w as C, x as d, y as m, z as T, c as f, r as S, s as p, t as I, H as g, I as k, m as x, L as H, O as M, v as P, P as b, S as w, T as O, n as v, o as D, p as E, U as L, k as R, l as q, d as y, e as z, u as B, g as U, f as j } from "./F0AiChat-DJTQ9AEc.js";
|
|
2
2
|
import { defaultTranslations as G } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as K, F as N, c as Q, d as W, b as X, a as Y, o as Z, u as _ } from "./F0HILActionConfirmation-
|
|
3
|
+
import { A as K, F as N, c as Q, d as W, b as X, a as Y, o as Z, u as _ } from "./F0HILActionConfirmation-DH49_Gi0.js";
|
|
4
4
|
export {
|
|
5
5
|
e as A,
|
|
6
6
|
K as AiChatTranslationsProvider,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -7205,8 +7205,13 @@ declare module "gridstack" {
|
|
|
7205
7205
|
}
|
|
7206
7206
|
|
|
7207
7207
|
|
|
7208
|
-
declare
|
|
7209
|
-
|
|
7208
|
+
declare module "@tiptap/core" {
|
|
7209
|
+
interface Commands<ReturnType> {
|
|
7210
|
+
enhanceHighlight: {
|
|
7211
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
7212
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
7213
|
+
};
|
|
7214
|
+
}
|
|
7210
7215
|
}
|
|
7211
7216
|
|
|
7212
7217
|
|
|
@@ -7222,9 +7227,8 @@ declare module "@tiptap/core" {
|
|
|
7222
7227
|
|
|
7223
7228
|
declare module "@tiptap/core" {
|
|
7224
7229
|
interface Commands<ReturnType> {
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
7230
|
+
moodTracker: {
|
|
7231
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
7228
7232
|
};
|
|
7229
7233
|
}
|
|
7230
7234
|
}
|
|
@@ -7232,8 +7236,8 @@ declare module "@tiptap/core" {
|
|
|
7232
7236
|
|
|
7233
7237
|
declare module "@tiptap/core" {
|
|
7234
7238
|
interface Commands<ReturnType> {
|
|
7235
|
-
|
|
7236
|
-
|
|
7239
|
+
transcript: {
|
|
7240
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
7237
7241
|
};
|
|
7238
7242
|
}
|
|
7239
7243
|
}
|
|
@@ -7250,10 +7254,6 @@ declare module "@tiptap/core" {
|
|
|
7250
7254
|
}
|
|
7251
7255
|
|
|
7252
7256
|
|
|
7253
|
-
declare
|
|
7254
|
-
|
|
7255
|
-
transcript: {
|
|
7256
|
-
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
7257
|
-
};
|
|
7258
|
-
}
|
|
7257
|
+
declare namespace Calendar {
|
|
7258
|
+
var displayName: string;
|
|
7259
7259
|
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -1631,7 +1631,7 @@ export declare const createPageLayoutBlockGroup: <Props = unknown>(displayName:
|
|
|
1631
1631
|
* CSS RGB color string type
|
|
1632
1632
|
* @example 'rgb(255, 0, 0)' or 'rgb(255,0,0)'
|
|
1633
1633
|
*/
|
|
1634
|
-
declare type CSSRgbString = `rgb(${number}, ${number}, ${number})` | `rgb(${number},${number},${number})`;
|
|
1634
|
+
export declare type CSSRgbString = `rgb(${number}, ${number}, ${number})` | `rgb(${number},${number},${number})`;
|
|
1635
1635
|
|
|
1636
1636
|
/**
|
|
1637
1637
|
* Extracts the current filters type from filter options.
|
|
@@ -6313,7 +6313,7 @@ export declare interface LoadingStateProps {
|
|
|
6313
6313
|
/** Margin tokens (spacing + auto for centering) */
|
|
6314
6314
|
export declare type MarginToken = SpacingToken | "auto";
|
|
6315
6315
|
|
|
6316
|
-
declare type MaskOptions = {
|
|
6316
|
+
export declare type MaskOptions = {
|
|
6317
6317
|
/**
|
|
6318
6318
|
* The width of the Mask element.
|
|
6319
6319
|
* @default 600
|
|
@@ -6339,7 +6339,7 @@ declare type MaskOptions = {
|
|
|
6339
6339
|
mode?: "dark" | "light";
|
|
6340
6340
|
/**
|
|
6341
6341
|
* Color list.
|
|
6342
|
-
* @default ['rgb(
|
|
6342
|
+
* @default ['rgb(229, 25, 67)', 'rgb(229, 86, 25)', 'rgb(229, 25, 67)', 'rgb(161, 173, 229)']
|
|
6343
6343
|
* @note The color list must be specified with 4 colors in an array, formatted as rgb color strings.
|
|
6344
6344
|
*/
|
|
6345
6345
|
colors?: [CSSRgbString, CSSRgbString, CSSRgbString, CSSRgbString];
|
|
@@ -8764,8 +8764,13 @@ declare module "gridstack" {
|
|
|
8764
8764
|
}
|
|
8765
8765
|
|
|
8766
8766
|
|
|
8767
|
-
declare
|
|
8768
|
-
|
|
8767
|
+
declare module "@tiptap/core" {
|
|
8768
|
+
interface Commands<ReturnType> {
|
|
8769
|
+
enhanceHighlight: {
|
|
8770
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8771
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8772
|
+
};
|
|
8773
|
+
}
|
|
8769
8774
|
}
|
|
8770
8775
|
|
|
8771
8776
|
|
|
@@ -8781,9 +8786,8 @@ declare module "@tiptap/core" {
|
|
|
8781
8786
|
|
|
8782
8787
|
declare module "@tiptap/core" {
|
|
8783
8788
|
interface Commands<ReturnType> {
|
|
8784
|
-
|
|
8785
|
-
|
|
8786
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
8789
|
+
moodTracker: {
|
|
8790
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
8787
8791
|
};
|
|
8788
8792
|
}
|
|
8789
8793
|
}
|
|
@@ -8791,8 +8795,8 @@ declare module "@tiptap/core" {
|
|
|
8791
8795
|
|
|
8792
8796
|
declare module "@tiptap/core" {
|
|
8793
8797
|
interface Commands<ReturnType> {
|
|
8794
|
-
|
|
8795
|
-
|
|
8798
|
+
transcript: {
|
|
8799
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
8796
8800
|
};
|
|
8797
8801
|
}
|
|
8798
8802
|
}
|
|
@@ -8809,10 +8813,6 @@ declare module "@tiptap/core" {
|
|
|
8809
8813
|
}
|
|
8810
8814
|
|
|
8811
8815
|
|
|
8812
|
-
declare
|
|
8813
|
-
|
|
8814
|
-
transcript: {
|
|
8815
|
-
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
8816
|
-
};
|
|
8817
|
-
}
|
|
8816
|
+
declare namespace Calendar {
|
|
8817
|
+
var displayName: string;
|
|
8818
8818
|
}
|
package/dist/f0.js
CHANGED
|
@@ -6,7 +6,7 @@ import q, { forwardRef as Ke, useRef as Y, useImperativeHandle as Xc, Children a
|
|
|
6
6
|
import { createPortal as Ao, unstable_batchedUpdates as en, flushSync as nd } from "react-dom";
|
|
7
7
|
import { L as Oo, C as id, i as Mo, S as gs, a as sd, f as Jn, b as _r, c as od, A as ad, d as tn, e as Io, E as ld, g as sn, h as cd, j as dd, k as ud, l as ir, m as Lo, u as fd, G as hd, n as md, o as vs, p as pd, q as Po, r as gd, B as Fo, X as zo, Y as hi, s as vd, t as Bo, v as yd, w as bd, x as xd, y as wd, z as _d, D as Cd, F as Ed, H as Sd, I as ys, J as kd, K as Dd, M as Nd, N as Rd, O as Td, P as Ad, Q as Od, R as Md, V as Id, T as Ld, U as mi, W as Vo, Z as Pd, _ as Fd, $ as zd, a0 as Bd, a1 as Ho, a2 as jo, a3 as Vd, a4 as $o, a5 as Wo, a6 as Hd, a7 as jd, a8 as $d, a9 as Wd } from "./DataCollectionStorageProvider-CaTG4Ci9.js";
|
|
8
8
|
import { af as cb, aa as db, ad as ub, ae as fb, ab as hb, ac as mb, ag as pb, ah as gb, ai as vb, aj as yb } from "./DataCollectionStorageProvider-CaTG4Ci9.js";
|
|
9
|
-
import { A as xb, F as wb, c as _b, d as Cb, b as Eb, a as Sb, o as kb, u as Db } from "./F0HILActionConfirmation-
|
|
9
|
+
import { A as xb, F as wb, c as _b, d as Cb, b as Eb, a as Sb, o as kb, u as Db } from "./F0HILActionConfirmation-DH49_Gi0.js";
|
|
10
10
|
import { defaultTranslations as Rb } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const Gd = {
|
|
12
12
|
xs: 1,
|
|
@@ -646,8 +646,13 @@ declare module "gridstack" {
|
|
|
646
646
|
}
|
|
647
647
|
|
|
648
648
|
|
|
649
|
-
declare
|
|
650
|
-
|
|
649
|
+
declare module "@tiptap/core" {
|
|
650
|
+
interface Commands<ReturnType> {
|
|
651
|
+
enhanceHighlight: {
|
|
652
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
653
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
654
|
+
};
|
|
655
|
+
}
|
|
651
656
|
}
|
|
652
657
|
|
|
653
658
|
|
|
@@ -663,9 +668,8 @@ declare module "@tiptap/core" {
|
|
|
663
668
|
|
|
664
669
|
declare module "@tiptap/core" {
|
|
665
670
|
interface Commands<ReturnType> {
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
671
|
+
moodTracker: {
|
|
672
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
669
673
|
};
|
|
670
674
|
}
|
|
671
675
|
}
|
|
@@ -673,8 +677,8 @@ declare module "@tiptap/core" {
|
|
|
673
677
|
|
|
674
678
|
declare module "@tiptap/core" {
|
|
675
679
|
interface Commands<ReturnType> {
|
|
676
|
-
|
|
677
|
-
|
|
680
|
+
transcript: {
|
|
681
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
678
682
|
};
|
|
679
683
|
}
|
|
680
684
|
}
|
|
@@ -691,10 +695,6 @@ declare module "@tiptap/core" {
|
|
|
691
695
|
}
|
|
692
696
|
|
|
693
697
|
|
|
694
|
-
declare
|
|
695
|
-
|
|
696
|
-
transcript: {
|
|
697
|
-
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
698
|
-
};
|
|
699
|
-
}
|
|
698
|
+
declare namespace Calendar {
|
|
699
|
+
var displayName: string;
|
|
700
700
|
}
|