@factorialco/f0-react 1.203.2 → 1.203.4

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.
@@ -1887,7 +1887,6 @@ export declare const EntitySelect: <T>(props: EntitySelectProps<T> & {
1887
1887
  }) => JSX_2.Element;
1888
1888
 
1889
1889
  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
1890
  entities: EntitySelectEntity[];
1892
1891
  groups: EntitySelectNamedGroup[];
1893
1892
  selectedGroup: string;
@@ -1912,6 +1911,7 @@ declare interface EntitySelectCommonProps<T> extends Omit<PopoverProps, "childre
1912
1911
  onCreate?: (partialName: string) => void;
1913
1912
  onCreateLabel?: string;
1914
1913
  actions?: Action[];
1914
+ value?: T;
1915
1915
  }
1916
1916
 
1917
1917
  export declare type EntitySelectEntity = {
@@ -5042,11 +5042,6 @@ declare module "@tiptap/core" {
5042
5042
  }
5043
5043
 
5044
5044
 
5045
- declare namespace Calendar {
5046
- var displayName: string;
5047
- }
5048
-
5049
-
5050
5045
  declare module "@tiptap/core" {
5051
5046
  interface Commands<ReturnType> {
5052
5047
  moodTracker: {
@@ -5054,3 +5049,8 @@ declare module "@tiptap/core" {
5054
5049
  };
5055
5050
  }
5056
5051
  }
5052
+
5053
+
5054
+ declare namespace Calendar {
5055
+ var displayName: string;
5056
+ }