@factorialco/f0-react 1.321.0 → 1.322.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.
@@ -3216,7 +3216,7 @@ export declare type FilterOptions<FilterKeys extends string> = Record<FilterKeys
3216
3216
  */
3217
3217
  export declare type FiltersDefinition<Keys extends string = string> = Record<Keys, FilterDefinition>;
3218
3218
 
3219
- export declare type FiltersMode = "default" | "compact";
3219
+ export declare type FiltersMode = "default" | "compact" | "simple";
3220
3220
 
3221
3221
  /**
3222
3222
  * Current state of all filters in a collection.
@@ -6406,11 +6406,28 @@ declare global {
6406
6406
  }
6407
6407
  }
6408
6408
 
6409
+ declare module "gridstack" {
6410
+ interface GridStackWidget {
6411
+ id?: string;
6412
+ allowedSizes?: Array<{
6413
+ w: number;
6414
+ h: number;
6415
+ }>;
6416
+ meta?: Record<string, unknown>;
6417
+ }
6418
+ interface GridStackNode {
6419
+ allowedSizes?: Array<{
6420
+ w: number;
6421
+ h: number;
6422
+ }>;
6423
+ }
6424
+ }
6425
+
6409
6426
 
6410
6427
  declare module "@tiptap/core" {
6411
6428
  interface Commands<ReturnType> {
6412
- liveCompanion: {
6413
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6429
+ aiBlock: {
6430
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6414
6431
  };
6415
6432
  }
6416
6433
  }
@@ -6418,8 +6435,8 @@ declare module "@tiptap/core" {
6418
6435
 
6419
6436
  declare module "@tiptap/core" {
6420
6437
  interface Commands<ReturnType> {
6421
- aiBlock: {
6422
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6438
+ liveCompanion: {
6439
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6423
6440
  };
6424
6441
  }
6425
6442
  }
@@ -6433,21 +6450,9 @@ declare module "@tiptap/core" {
6433
6450
  }
6434
6451
  }
6435
6452
 
6436
- declare module "gridstack" {
6437
- interface GridStackWidget {
6438
- id?: string;
6439
- allowedSizes?: Array<{
6440
- w: number;
6441
- h: number;
6442
- }>;
6443
- meta?: Record<string, unknown>;
6444
- }
6445
- interface GridStackNode {
6446
- allowedSizes?: Array<{
6447
- w: number;
6448
- h: number;
6449
- }>;
6450
- }
6453
+
6454
+ declare namespace Calendar {
6455
+ var displayName: string;
6451
6456
  }
6452
6457
 
6453
6458
 
@@ -6458,8 +6463,3 @@ declare module "@tiptap/core" {
6458
6463
  };
6459
6464
  }
6460
6465
  }
6461
-
6462
-
6463
- declare namespace Calendar {
6464
- var displayName: string;
6465
- }