@factorialco/f0-react 1.321.1 → 1.322.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.
@@ -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.
@@ -5745,8 +5745,8 @@ declare type TableVisualizationOptions<R extends RecordType, _Filters extends Fi
5745
5745
  };
5746
5746
 
5747
5747
  declare type TableVisualizationSettings = {
5748
- order: ColId[];
5749
- hidden: ColId[];
5748
+ order?: ColId[];
5749
+ hidden?: ColId[];
5750
5750
  };
5751
5751
 
5752
5752
  export declare const Tabs: FC<TabsProps> & {
@@ -6406,23 +6406,6 @@ 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
-
6426
6409
 
6427
6410
  declare module "@tiptap/core" {
6428
6411
  interface Commands<ReturnType> {
@@ -6450,6 +6433,23 @@ declare module "@tiptap/core" {
6450
6433
  }
6451
6434
  }
6452
6435
 
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
+ }
6451
+ }
6452
+
6453
6453
 
6454
6454
  declare module "@tiptap/core" {
6455
6455
  interface Commands<ReturnType> {