@factorialco/f0-react 1.240.0 → 1.240.2
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 -9
- package/dist/experimental.js +1091 -1089
- package/dist/f0.d.ts +11 -10
- package/dist/f0.js +143 -143
- package/dist/styles.css +1 -1
- package/package.json +1 -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;
|
|
@@ -3401,8 +3402,8 @@ declare global {
|
|
|
3401
3402
|
|
|
3402
3403
|
declare module "@tiptap/core" {
|
|
3403
3404
|
interface Commands<ReturnType> {
|
|
3404
|
-
|
|
3405
|
-
|
|
3405
|
+
aiBlock: {
|
|
3406
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
3406
3407
|
};
|
|
3407
3408
|
}
|
|
3408
3409
|
}
|
|
@@ -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
|
}
|
|
@@ -3426,6 +3427,11 @@ declare module "@tiptap/core" {
|
|
|
3426
3427
|
}
|
|
3427
3428
|
|
|
3428
3429
|
|
|
3430
|
+
declare namespace Calendar {
|
|
3431
|
+
var displayName: string;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
|
|
3429
3435
|
declare module "@tiptap/core" {
|
|
3430
3436
|
interface Commands<ReturnType> {
|
|
3431
3437
|
moodTracker: {
|
|
@@ -3433,8 +3439,3 @@ declare module "@tiptap/core" {
|
|
|
3433
3439
|
};
|
|
3434
3440
|
}
|
|
3435
3441
|
}
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
declare namespace Calendar {
|
|
3439
|
-
var displayName: string;
|
|
3440
|
-
}
|