@factorialco/f0-react 1.239.4 → 1.240.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/experimental.d.ts +10 -10
- package/dist/experimental.js +3692 -3685
- package/dist/f0.d.ts +11 -10
- package/dist/f0.js +143 -143
- package/package.json +2 -1
package/dist/f0.d.ts
CHANGED
|
@@ -2438,7 +2438,7 @@ export declare type ProductCardProps = {
|
|
|
2438
2438
|
type?: never;
|
|
2439
2439
|
});
|
|
2440
2440
|
|
|
2441
|
-
export declare function ProductModal({ isOpen, onClose, title, image, benefits, errorMessage, successMessage, loadingState, nextSteps, closeLabel, primaryAction, modalTitle, modalModule, secondaryAction, portalContainer, tag, }: ProductModalProps): JSX_2.Element;
|
|
2441
|
+
export declare function ProductModal({ isOpen, onClose, title, image, benefits, errorMessage, successMessage, loadingState, nextSteps, closeLabel, primaryAction, modalTitle, modalModule, secondaryAction, portalContainer, tag, showResponseDialog, }: ProductModalProps): JSX_2.Element;
|
|
2442
2442
|
|
|
2443
2443
|
declare type ProductModalProps = {
|
|
2444
2444
|
isOpen: boolean;
|
|
@@ -2476,6 +2476,7 @@ declare type ProductModalProps = {
|
|
|
2476
2476
|
primaryAction?: Action_2;
|
|
2477
2477
|
secondaryAction?: Action_2;
|
|
2478
2478
|
portalContainer?: HTMLElement | null;
|
|
2479
|
+
showResponseDialog?: boolean;
|
|
2479
2480
|
};
|
|
2480
2481
|
|
|
2481
2482
|
export declare function ProductWidget({ mediaUrl, title, description, onClose, dismissible, width, trackVisibility, actions, showConfirmation, }: ProductWidgetProps): JSX_2.Element;
|
|
@@ -3410,8 +3411,8 @@ declare module "@tiptap/core" {
|
|
|
3410
3411
|
|
|
3411
3412
|
declare module "@tiptap/core" {
|
|
3412
3413
|
interface Commands<ReturnType> {
|
|
3413
|
-
|
|
3414
|
-
|
|
3414
|
+
liveCompanion: {
|
|
3415
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
3415
3416
|
};
|
|
3416
3417
|
}
|
|
3417
3418
|
}
|
|
@@ -3419,18 +3420,13 @@ declare module "@tiptap/core" {
|
|
|
3419
3420
|
|
|
3420
3421
|
declare module "@tiptap/core" {
|
|
3421
3422
|
interface Commands<ReturnType> {
|
|
3422
|
-
|
|
3423
|
-
|
|
3423
|
+
transcript: {
|
|
3424
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
3424
3425
|
};
|
|
3425
3426
|
}
|
|
3426
3427
|
}
|
|
3427
3428
|
|
|
3428
3429
|
|
|
3429
|
-
declare namespace Calendar {
|
|
3430
|
-
var displayName: string;
|
|
3431
|
-
}
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
3430
|
declare module "@tiptap/core" {
|
|
3435
3431
|
interface Commands<ReturnType> {
|
|
3436
3432
|
moodTracker: {
|
|
@@ -3438,3 +3434,8 @@ declare module "@tiptap/core" {
|
|
|
3438
3434
|
};
|
|
3439
3435
|
}
|
|
3440
3436
|
}
|
|
3437
|
+
|
|
3438
|
+
|
|
3439
|
+
declare namespace Calendar {
|
|
3440
|
+
var displayName: string;
|
|
3441
|
+
}
|