@factorialco/f0-react 1.320.1 → 1.321.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.
@@ -1988,10 +1988,11 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
1988
1988
  currentGrouping?: GroupingState<R, Grouping>;
1989
1989
  /*******************************************************/
1990
1990
  /***** NESTED RECORDS ***************************************************/
1991
- fetchChildren?: ({ item, filters, pagination, }: {
1991
+ fetchChildren?: ({ item, filters, pagination, sortings, }: {
1992
1992
  item: R;
1993
1993
  filters?: FiltersState<Filters>;
1994
1994
  pagination?: ChildrenPaginationInfo;
1995
+ sortings?: SortingsState<Sortings>;
1995
1996
  }) => Promise<ChildrenResponse<R>>;
1996
1997
  /** Function to determine if an item has children */
1997
1998
  itemsWithChildren?: (item: R) => boolean;
@@ -6450,11 +6451,6 @@ declare module "@tiptap/core" {
6450
6451
  }
6451
6452
 
6452
6453
 
6453
- declare namespace Calendar {
6454
- var displayName: string;
6455
- }
6456
-
6457
-
6458
6454
  declare module "@tiptap/core" {
6459
6455
  interface Commands<ReturnType> {
6460
6456
  moodTracker: {
@@ -6462,3 +6458,8 @@ declare module "@tiptap/core" {
6462
6458
  };
6463
6459
  }
6464
6460
  }
6461
+
6462
+
6463
+ declare namespace Calendar {
6464
+ var displayName: string;
6465
+ }