@factorialco/f0-react 1.318.1 → 1.319.1

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;
@@ -6403,6 +6405,23 @@ declare global {
6403
6405
  }
6404
6406
  }
6405
6407
 
6408
+ declare module "gridstack" {
6409
+ interface GridStackWidget {
6410
+ id?: string;
6411
+ allowedSizes?: Array<{
6412
+ w: number;
6413
+ h: number;
6414
+ }>;
6415
+ meta?: Record<string, unknown>;
6416
+ }
6417
+ interface GridStackNode {
6418
+ allowedSizes?: Array<{
6419
+ w: number;
6420
+ h: number;
6421
+ }>;
6422
+ }
6423
+ }
6424
+
6406
6425
 
6407
6426
  declare module "@tiptap/core" {
6408
6427
  interface Commands<ReturnType> {
@@ -6430,23 +6449,6 @@ declare module "@tiptap/core" {
6430
6449
  }
6431
6450
  }
6432
6451
 
6433
- declare module "gridstack" {
6434
- interface GridStackWidget {
6435
- id?: string;
6436
- allowedSizes?: Array<{
6437
- w: number;
6438
- h: number;
6439
- }>;
6440
- meta?: Record<string, unknown>;
6441
- }
6442
- interface GridStackNode {
6443
- allowedSizes?: Array<{
6444
- w: number;
6445
- h: number;
6446
- }>;
6447
- }
6448
- }
6449
-
6450
6452
 
6451
6453
  declare module "@tiptap/core" {
6452
6454
  interface Commands<ReturnType> {