@factorialco/f0-react 1.302.1 → 1.303.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.
@@ -6049,6 +6049,8 @@ declare interface UseDataOptions<R extends RecordType, Filters extends FiltersDe
6049
6049
  */
6050
6050
  declare interface UseDataReturn<R extends RecordType> {
6051
6051
  data: Data<R>;
6052
+ search: string | undefined;
6053
+ setSearch: (search: string | undefined) => void;
6052
6054
  isInitialLoading: boolean;
6053
6055
  isLoading: boolean;
6054
6056
  isLoadingMore: boolean;
@@ -6372,23 +6374,6 @@ declare global {
6372
6374
  }
6373
6375
  }
6374
6376
 
6375
- declare module "gridstack" {
6376
- interface GridStackWidget {
6377
- id?: string;
6378
- allowedSizes?: Array<{
6379
- w: number;
6380
- h: number;
6381
- }>;
6382
- meta?: Record<string, unknown>;
6383
- }
6384
- interface GridStackNode {
6385
- allowedSizes?: Array<{
6386
- w: number;
6387
- h: number;
6388
- }>;
6389
- }
6390
- }
6391
-
6392
6377
 
6393
6378
  declare module "@tiptap/core" {
6394
6379
  interface Commands<ReturnType> {
@@ -6416,6 +6401,23 @@ declare module "@tiptap/core" {
6416
6401
  }
6417
6402
  }
6418
6403
 
6404
+ declare module "gridstack" {
6405
+ interface GridStackWidget {
6406
+ id?: string;
6407
+ allowedSizes?: Array<{
6408
+ w: number;
6409
+ h: number;
6410
+ }>;
6411
+ meta?: Record<string, unknown>;
6412
+ }
6413
+ interface GridStackNode {
6414
+ allowedSizes?: Array<{
6415
+ w: number;
6416
+ h: number;
6417
+ }>;
6418
+ }
6419
+ }
6420
+
6419
6421
 
6420
6422
  declare namespace Calendar {
6421
6423
  var displayName: string;