@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.
- package/dist/experimental.d.ts +7 -6
- package/dist/experimental.js +1767 -1755
- package/dist/f0.d.ts +7 -6
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -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
|
+
}
|