@factorialco/f0-react 1.201.8 → 1.202.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.
@@ -1886,12 +1886,11 @@ export declare const EntitySelect: (props: EntitySelectProps & {
1886
1886
  children?: React.ReactNode;
1887
1887
  }) => JSX_2.Element;
1888
1888
 
1889
- declare interface EntitySelectCommonProps extends Omit<PopoverProps, "children" | "modal"> {
1889
+ declare interface EntitySelectCommonProps extends Omit<PopoverProps, "children" | "modal">, Pick<InputFieldProps<string>, "label" | "labelIcon" | "icon" | "error" | "status" | "hint" | "hideLabel" | "maxLength" | "value" | "disabled" | "placeholder" | "loading" | "required" | "readonly" | "append"> {
1890
1890
  entities: EntitySelectEntity[];
1891
1891
  groups: EntitySelectNamedGroup[];
1892
1892
  selectedGroup: string;
1893
- triggerPlaceholder: string;
1894
- triggerSelected: string;
1893
+ selectedItemsCopy: string;
1895
1894
  notFoundTitle: string;
1896
1895
  notFoundSubtitle: string;
1897
1896
  onItemExpandedChange: (id: EntityId, expanded: boolean) => void;
@@ -2567,6 +2566,7 @@ declare type InputFieldProps<T> = {
2567
2566
  appendTag?: string;
2568
2567
  lengthProvider?: (value: T | undefined) => number;
2569
2568
  loading?: boolean;
2569
+ avatar?: AvatarVariant;
2570
2570
  loadingIndicator?: {
2571
2571
  /**
2572
2572
  * If true, the loading spinner will be displayed over the content without affecting the layout
@@ -5041,6 +5041,11 @@ declare module "@tiptap/core" {
5041
5041
  }
5042
5042
 
5043
5043
 
5044
+ declare namespace Calendar {
5045
+ var displayName: string;
5046
+ }
5047
+
5048
+
5044
5049
  declare module "@tiptap/core" {
5045
5050
  interface Commands<ReturnType> {
5046
5051
  moodTracker: {
@@ -5048,8 +5053,3 @@ declare module "@tiptap/core" {
5048
5053
  };
5049
5054
  }
5050
5055
  }
5051
-
5052
-
5053
- declare namespace Calendar {
5054
- var displayName: string;
5055
- }