@factorialco/f0-react 1.220.0 → 1.222.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 +16 -8
- package/dist/experimental.js +1122 -1113
- package/dist/f0.d.ts +11 -7
- package/dist/f0.js +2 -2
- package/dist/{hooks-nEHPmQmV.js → hooks--wvilnRn.js} +14497 -14426
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -3781,12 +3781,16 @@ declare type ProductUpdatesProp = {
|
|
|
3781
3781
|
title: string;
|
|
3782
3782
|
description: string;
|
|
3783
3783
|
onClick: () => void;
|
|
3784
|
-
module: ModuleId;
|
|
3785
3784
|
dismissable: boolean;
|
|
3786
3785
|
onClose?: () => void;
|
|
3787
3786
|
trackVisibility?: (open: boolean) => void;
|
|
3788
|
-
|
|
3789
|
-
|
|
3787
|
+
} & ({
|
|
3788
|
+
module?: never;
|
|
3789
|
+
type: "one-campaign";
|
|
3790
|
+
} | {
|
|
3791
|
+
module: ModuleId;
|
|
3792
|
+
type?: never;
|
|
3793
|
+
})>;
|
|
3790
3794
|
};
|
|
3791
3795
|
};
|
|
3792
3796
|
|
|
@@ -4799,6 +4803,10 @@ export declare const TwoColumnsList: ForwardRefExoticComponent<TwoColumnsListTyp
|
|
|
4799
4803
|
declare interface TwoColumnsListType {
|
|
4800
4804
|
title?: string;
|
|
4801
4805
|
titleValue?: string;
|
|
4806
|
+
titleTooltip?: {
|
|
4807
|
+
label?: string;
|
|
4808
|
+
description: string;
|
|
4809
|
+
};
|
|
4802
4810
|
list: TwoColumnsItemType[];
|
|
4803
4811
|
}
|
|
4804
4812
|
|
|
@@ -5129,6 +5137,11 @@ declare module "@tiptap/core" {
|
|
|
5129
5137
|
}
|
|
5130
5138
|
|
|
5131
5139
|
|
|
5140
|
+
declare namespace Calendar {
|
|
5141
|
+
var displayName: string;
|
|
5142
|
+
}
|
|
5143
|
+
|
|
5144
|
+
|
|
5132
5145
|
declare module "@tiptap/core" {
|
|
5133
5146
|
interface Commands<ReturnType> {
|
|
5134
5147
|
moodTracker: {
|
|
@@ -5136,8 +5149,3 @@ declare module "@tiptap/core" {
|
|
|
5136
5149
|
};
|
|
5137
5150
|
}
|
|
5138
5151
|
}
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
declare namespace Calendar {
|
|
5142
|
-
var displayName: string;
|
|
5143
|
-
}
|