@factorialco/f0-react 1.203.3 → 1.204.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 +8 -6
- package/dist/experimental.js +667 -672
- package/dist/f0.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -246,6 +246,7 @@ declare type AIButton = {
|
|
|
246
246
|
emoji: string;
|
|
247
247
|
label: string;
|
|
248
248
|
icon: IconType;
|
|
249
|
+
editable?: boolean;
|
|
249
250
|
};
|
|
250
251
|
|
|
251
252
|
/**
|
|
@@ -1887,7 +1888,6 @@ export declare const EntitySelect: <T>(props: EntitySelectProps<T> & {
|
|
|
1887
1888
|
}) => JSX_2.Element;
|
|
1888
1889
|
|
|
1889
1890
|
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"> {
|
|
1890
|
-
value?: T;
|
|
1891
1891
|
entities: EntitySelectEntity[];
|
|
1892
1892
|
groups: EntitySelectNamedGroup[];
|
|
1893
1893
|
selectedGroup: string;
|
|
@@ -1912,6 +1912,7 @@ declare interface EntitySelectCommonProps<T> extends Omit<PopoverProps, "childre
|
|
|
1912
1912
|
onCreate?: (partialName: string) => void;
|
|
1913
1913
|
onCreateLabel?: string;
|
|
1914
1914
|
actions?: Action[];
|
|
1915
|
+
value?: T;
|
|
1915
1916
|
}
|
|
1916
1917
|
|
|
1917
1918
|
export declare type EntitySelectEntity = {
|
|
@@ -3053,6 +3054,7 @@ export declare type NotesTextEditorHandle = {
|
|
|
3053
3054
|
setContent: (content: string) => void;
|
|
3054
3055
|
insertAIBlock: () => void;
|
|
3055
3056
|
insertTranscript: (title: string, users: User[], messages: Message[]) => void;
|
|
3057
|
+
pushContent: (content: string) => void;
|
|
3056
3058
|
};
|
|
3057
3059
|
|
|
3058
3060
|
export declare interface NotesTextEditorProps {
|
|
@@ -5042,11 +5044,6 @@ declare module "@tiptap/core" {
|
|
|
5042
5044
|
}
|
|
5043
5045
|
|
|
5044
5046
|
|
|
5045
|
-
declare namespace Calendar {
|
|
5046
|
-
var displayName: string;
|
|
5047
|
-
}
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
5047
|
declare module "@tiptap/core" {
|
|
5051
5048
|
interface Commands<ReturnType> {
|
|
5052
5049
|
moodTracker: {
|
|
@@ -5054,3 +5051,8 @@ declare module "@tiptap/core" {
|
|
|
5054
5051
|
};
|
|
5055
5052
|
}
|
|
5056
5053
|
}
|
|
5054
|
+
|
|
5055
|
+
|
|
5056
|
+
declare namespace Calendar {
|
|
5057
|
+
var displayName: string;
|
|
5058
|
+
}
|