@factorialco/f0-react 1.224.0 → 1.225.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 +6578 -6513
- package/dist/f0.d.ts +9 -9
- package/dist/f0.js +2 -2
- package/dist/{hooks--wvilnRn.js → hooks-CsJn4oSG.js} +173 -166
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -4161,7 +4161,7 @@ export declare type SelectItemProps<T, R = unknown> = SelectItemObject<T, R> | {
|
|
|
4161
4161
|
*/
|
|
4162
4162
|
export declare type SelectProps<T extends string, R = unknown> = {
|
|
4163
4163
|
onChange: (value: T, originalItem?: ResolvedRecordType<R>, option?: SelectItemObject<T, ResolvedRecordType<R>>) => void;
|
|
4164
|
-
onChangeSelectedOption?: (option: SelectItemObject<T, ResolvedRecordType<R>>) => void;
|
|
4164
|
+
onChangeSelectedOption?: (option: SelectItemObject<T, ResolvedRecordType<R>> | undefined) => void;
|
|
4165
4165
|
value?: T;
|
|
4166
4166
|
defaultItem?: SelectItemObject<T, ResolvedRecordType<R>>;
|
|
4167
4167
|
children?: React.ReactNode;
|
|
@@ -5115,8 +5115,8 @@ declare global {
|
|
|
5115
5115
|
|
|
5116
5116
|
declare module "@tiptap/core" {
|
|
5117
5117
|
interface Commands<ReturnType> {
|
|
5118
|
-
|
|
5119
|
-
|
|
5118
|
+
liveCompanion: {
|
|
5119
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5120
5120
|
};
|
|
5121
5121
|
}
|
|
5122
5122
|
}
|
|
@@ -5124,8 +5124,8 @@ declare module "@tiptap/core" {
|
|
|
5124
5124
|
|
|
5125
5125
|
declare module "@tiptap/core" {
|
|
5126
5126
|
interface Commands<ReturnType> {
|
|
5127
|
-
|
|
5128
|
-
|
|
5127
|
+
aiBlock: {
|
|
5128
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
5129
5129
|
};
|
|
5130
5130
|
}
|
|
5131
5131
|
}
|
|
@@ -5140,11 +5140,6 @@ declare module "@tiptap/core" {
|
|
|
5140
5140
|
}
|
|
5141
5141
|
|
|
5142
5142
|
|
|
5143
|
-
declare namespace Calendar {
|
|
5144
|
-
var displayName: string;
|
|
5145
|
-
}
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
5143
|
declare module "@tiptap/core" {
|
|
5149
5144
|
interface Commands<ReturnType> {
|
|
5150
5145
|
moodTracker: {
|
|
@@ -5152,3 +5147,8 @@ declare module "@tiptap/core" {
|
|
|
5152
5147
|
};
|
|
5153
5148
|
}
|
|
5154
5149
|
}
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
declare namespace Calendar {
|
|
5153
|
+
var displayName: string;
|
|
5154
|
+
}
|