@factorialco/f0-react 4.55.0 → 4.56.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/{ChatPdfThumbnail-e_xAa5BG.js → ChatPdfThumbnail-DBvkl-F_.js} +1 -1
- package/dist/{DocumentToolbar-ZnR9EUMa.js → DocumentToolbar-DQpt1krt.js} +2 -2
- package/dist/{DocxViewer-B3DGLu2C.js → DocxViewer-B6HTjpEm.js} +2 -2
- package/dist/{F0AiProcessingOverlay-BVHAspoQ.js → F0AiProcessingOverlay-D5hKB9d7.js} +637 -612
- package/dist/{F0CanvasPanel-DvAledR4.js → F0CanvasPanel-BeVQHrJo.js} +34109 -38710
- package/dist/{SheetViewer-DtfcXdoa.js → SheetViewer-DOm6rD9f.js} +2 -2
- package/dist/{TextViewer-Drfvy4UM.js → TextViewer-BW9eWjT_.js} +2 -2
- package/dist/ai.d.ts +25 -10
- package/dist/ai.js +2 -2
- package/dist/component-status.d.ts +16 -6
- package/dist/component-status.js +204 -129
- package/dist/experimental.d.ts +13 -7
- package/dist/experimental.js +340 -339
- package/dist/f0.d.ts +32 -11
- package/dist/f0.js +500 -499
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/{index-BgFg3D88.js → index-BF3g-R2k.js} +318 -316
- package/dist/{index-DYLglfsp.js → index-CfHeK3Qf.js} +34 -33
- package/dist/{pdfWorker-CqQpWr5o.js → pdfWorker-D-5ek9Um.js} +3 -2
- package/dist/styles.css +1 -1
- package/dist/tooltip-BH6Se8A4.js +4633 -0
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -4340,8 +4340,14 @@ declare type EditableTableColumnDefinition<R extends RecordType, Sortings extend
|
|
|
4340
4340
|
/**
|
|
4341
4341
|
* Configuration for `"date"` cells. Accepts `minDate` / `maxDate` to
|
|
4342
4342
|
* restrict the selectable date range in the picker.
|
|
4343
|
+
*
|
|
4344
|
+
* Can be a static object or a function that receives the current row item
|
|
4345
|
+
* to return a per-row range (e.g. bound one date field by another field's
|
|
4346
|
+
* value: `(item) => ({ minDate: parseISO(item.startDate) })`). The picker's
|
|
4347
|
+
* default visible month follows `minDate`, so a per-row `minDate` also
|
|
4348
|
+
* opens the calendar on that date.
|
|
4343
4349
|
*/
|
|
4344
|
-
dateConfig?: DateCellConfig;
|
|
4350
|
+
dateConfig?: DateCellConfig | ((item: R) => DateCellConfig);
|
|
4345
4351
|
/**
|
|
4346
4352
|
* Called after this cell's value changes. Use to compute derived values
|
|
4347
4353
|
* and update other cells in the same row.
|
|
@@ -11432,8 +11438,10 @@ declare module "@tiptap/core" {
|
|
|
11432
11438
|
|
|
11433
11439
|
declare module "@tiptap/core" {
|
|
11434
11440
|
interface Commands<ReturnType> {
|
|
11435
|
-
|
|
11436
|
-
|
|
11441
|
+
videoEmbed: {
|
|
11442
|
+
setVideoEmbed: (options: {
|
|
11443
|
+
src: string;
|
|
11444
|
+
}) => ReturnType;
|
|
11437
11445
|
};
|
|
11438
11446
|
}
|
|
11439
11447
|
}
|
|
@@ -11441,10 +11449,8 @@ declare module "@tiptap/core" {
|
|
|
11441
11449
|
|
|
11442
11450
|
declare module "@tiptap/core" {
|
|
11443
11451
|
interface Commands<ReturnType> {
|
|
11444
|
-
|
|
11445
|
-
|
|
11446
|
-
src: string;
|
|
11447
|
-
}) => ReturnType;
|
|
11452
|
+
transcript: {
|
|
11453
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
11448
11454
|
};
|
|
11449
11455
|
}
|
|
11450
11456
|
}
|