@factorialco/f0-react 1.318.1 → 1.319.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.
@@ -860,12 +860,13 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
860
860
  hideSelector?: boolean;
861
861
  };
862
862
 
863
- declare function BaseHeader({ title, avatar, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
863
+ declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
864
864
 
865
865
  declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
866
866
 
867
867
  declare interface BaseHeaderProps_2 {
868
868
  title: string;
869
+ deactivated?: boolean;
869
870
  avatar?: {
870
871
  type: "generic";
871
872
  name: string;
@@ -2762,6 +2763,7 @@ export declare type EntitySelectEntity = {
2762
2763
  avatar?: string;
2763
2764
  expanded?: boolean;
2764
2765
  searchKeys?: string[];
2766
+ deactivated?: boolean;
2765
2767
  subItems?: EntitySelectSubEntity[];
2766
2768
  };
2767
2769
 
@@ -4978,7 +4980,7 @@ declare type PropertyDefinition_2<T> = {
4978
4980
  hide?: (item: T) => boolean;
4979
4981
  };
4980
4982
 
4981
- declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status">;
4983
+ declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated">;
4982
4984
 
4983
4985
  declare type Props_2 = {
4984
4986
  /** Main heading text */
@@ -5148,7 +5150,7 @@ declare type RendererDefinition = ValueDisplayRendererDefinition;
5148
5150
 
5149
5151
  export declare type ResolvedRecordType<R> = R extends RecordType ? R : RecordType;
5150
5152
 
5151
- export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, }: Props) => JSX_2.Element;
5153
+ export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, }: Props) => JSX_2.Element;
5152
5154
 
5153
5155
  export declare type resultType = {
5154
5156
  value: string | null;
@@ -6406,8 +6408,8 @@ declare global {
6406
6408
 
6407
6409
  declare module "@tiptap/core" {
6408
6410
  interface Commands<ReturnType> {
6409
- aiBlock: {
6410
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6411
+ liveCompanion: {
6412
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6411
6413
  };
6412
6414
  }
6413
6415
  }
@@ -6415,8 +6417,8 @@ declare module "@tiptap/core" {
6415
6417
 
6416
6418
  declare module "@tiptap/core" {
6417
6419
  interface Commands<ReturnType> {
6418
- liveCompanion: {
6419
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6420
+ aiBlock: {
6421
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6420
6422
  };
6421
6423
  }
6422
6424
  }