@factorialco/f0-react 1.299.3 → 1.300.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/experimental.d.ts +29 -29
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +29 -29
- package/dist/f0.js +2 -2
- package/dist/{hooks-lOrixyHX.js → hooks-CxaQvlbP.js} +5716 -5705
- package/dist/i18n-provider-defaults.d.ts +29 -29
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -449,6 +449,33 @@ declare global {
|
|
|
449
449
|
}
|
|
450
450
|
|
|
451
451
|
|
|
452
|
+
declare module "@tiptap/core" {
|
|
453
|
+
interface Commands<ReturnType> {
|
|
454
|
+
aiBlock: {
|
|
455
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
456
|
+
};
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
declare module "@tiptap/core" {
|
|
462
|
+
interface Commands<ReturnType> {
|
|
463
|
+
transcript: {
|
|
464
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
declare module "@tiptap/core" {
|
|
471
|
+
interface Commands<ReturnType> {
|
|
472
|
+
liveCompanion: {
|
|
473
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
474
|
+
};
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
|
|
452
479
|
declare module "gridstack" {
|
|
453
480
|
interface GridStackWidget {
|
|
454
481
|
id?: string;
|
|
@@ -476,26 +503,8 @@ declare module "gridstack" {
|
|
|
476
503
|
|
|
477
504
|
declare module "@tiptap/core" {
|
|
478
505
|
interface Commands<ReturnType> {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
};
|
|
482
|
-
}
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
declare module "@tiptap/core" {
|
|
487
|
-
interface Commands<ReturnType> {
|
|
488
|
-
liveCompanion: {
|
|
489
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
490
|
-
};
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
declare module "@tiptap/core" {
|
|
496
|
-
interface Commands<ReturnType> {
|
|
497
|
-
transcript: {
|
|
498
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
506
|
+
moodTracker: {
|
|
507
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
499
508
|
};
|
|
500
509
|
}
|
|
501
510
|
}
|
|
@@ -504,12 +513,3 @@ declare module "@tiptap/core" {
|
|
|
504
513
|
declare namespace Calendar {
|
|
505
514
|
var displayName: string;
|
|
506
515
|
}
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
declare module "@tiptap/core" {
|
|
510
|
-
interface Commands<ReturnType> {
|
|
511
|
-
moodTracker: {
|
|
512
|
-
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
513
|
-
};
|
|
514
|
-
}
|
|
515
|
-
}
|