@factorialco/f0-react 1.225.1 → 1.226.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 +5 -5
- package/dist/experimental.js +19394 -23504
- package/dist/f0.d.ts +4 -4
- package/dist/f0.js +448 -573
- package/dist/{hooks-CsJn4oSG.js → hooks-CvdTIYxL.js} +15150 -22063
- package/package.json +2 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1944,7 +1944,7 @@ export declare const EntitySelect: <T>(props: EntitySelectProps<T> & {
|
|
|
1944
1944
|
children?: React.ReactNode;
|
|
1945
1945
|
}) => JSX_2.Element;
|
|
1946
1946
|
|
|
1947
|
-
declare interface EntitySelectCommonProps<T> extends Omit<PopoverProps, "children" | "modal">, Pick<InputFieldProps<string>, "label" | "labelIcon" | "icon" | "error" | "status" | "hint" | "hideLabel" | "maxLength" | "disabled" | "placeholder" | "loading" | "required" | "readonly" | "append"> {
|
|
1947
|
+
declare interface EntitySelectCommonProps<T> extends Omit<PopoverProps, "children" | "modal">, Pick<InputFieldProps<string>, "label" | "labelIcon" | "icon" | "error" | "status" | "hint" | "hideLabel" | "maxLength" | "disabled" | "placeholder" | "loading" | "required" | "readonly" | "append" | "size"> {
|
|
1948
1948
|
entities: EntitySelectEntity[];
|
|
1949
1949
|
groups: EntitySelectNamedGroup[];
|
|
1950
1950
|
selectedGroup: string;
|
|
@@ -5115,8 +5115,8 @@ declare global {
|
|
|
5115
5115
|
|
|
5116
5116
|
declare module "@tiptap/core" {
|
|
5117
5117
|
interface Commands<ReturnType> {
|
|
5118
|
-
|
|
5119
|
-
|
|
5118
|
+
aiBlock: {
|
|
5119
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => 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
|
+
liveCompanion: {
|
|
5128
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5129
5129
|
};
|
|
5130
5130
|
}
|
|
5131
5131
|
}
|