@factorialco/f0-react 1.345.0 → 1.347.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.
@@ -2824,6 +2824,7 @@ export declare type EntitySelectSubEntity = {
2824
2824
  subName: string;
2825
2825
  subAvatar?: string;
2826
2826
  subSearchKeys?: string[];
2827
+ subDeactivated?: boolean;
2827
2828
  };
2828
2829
 
2829
2830
  declare type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? [...Acc, N][number] : Enumerate<N, [...Acc, Acc["length"]]>;
@@ -6480,11 +6481,6 @@ declare module "gridstack" {
6480
6481
  }
6481
6482
 
6482
6483
 
6483
- declare namespace Calendar {
6484
- var displayName: string;
6485
- }
6486
-
6487
-
6488
6484
  declare module "@tiptap/core" {
6489
6485
  interface Commands<ReturnType> {
6490
6486
  aiBlock: {
@@ -6521,3 +6517,8 @@ declare module "@tiptap/core" {
6521
6517
  };
6522
6518
  }
6523
6519
  }
6520
+
6521
+
6522
+ declare namespace Calendar {
6523
+ var displayName: string;
6524
+ }