@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/f0.d.ts
CHANGED
|
@@ -1416,10 +1416,11 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
1416
1416
|
currentGrouping?: GroupingState<R, Grouping>;
|
|
1417
1417
|
/*******************************************************/
|
|
1418
1418
|
/***** NESTED RECORDS ***************************************************/
|
|
1419
|
-
fetchChildren?: ({ item, filters, pagination, }: {
|
|
1419
|
+
fetchChildren?: ({ item, filters, pagination, sortings, }: {
|
|
1420
1420
|
item: R;
|
|
1421
1421
|
filters?: FiltersState<Filters>;
|
|
1422
1422
|
pagination?: ChildrenPaginationInfo;
|
|
1423
|
+
sortings?: SortingsState<Sortings>;
|
|
1423
1424
|
}) => Promise<ChildrenResponse<R>>;
|
|
1424
1425
|
/** Function to determine if an item has children */
|
|
1425
1426
|
itemsWithChildren?: (item: R) => boolean;
|
|
@@ -5163,11 +5164,6 @@ declare module "@tiptap/core" {
|
|
|
5163
5164
|
}
|
|
5164
5165
|
|
|
5165
5166
|
|
|
5166
|
-
declare namespace Calendar {
|
|
5167
|
-
var displayName: string;
|
|
5168
|
-
}
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
5167
|
declare module "@tiptap/core" {
|
|
5172
5168
|
interface Commands<ReturnType> {
|
|
5173
5169
|
moodTracker: {
|
|
@@ -5175,3 +5171,8 @@ declare module "@tiptap/core" {
|
|
|
5175
5171
|
};
|
|
5176
5172
|
}
|
|
5177
5173
|
}
|
|
5174
|
+
|
|
5175
|
+
|
|
5176
|
+
declare namespace Calendar {
|
|
5177
|
+
var displayName: string;
|
|
5178
|
+
}
|
|
@@ -503,11 +503,6 @@ declare module "@tiptap/core" {
|
|
|
503
503
|
}
|
|
504
504
|
|
|
505
505
|
|
|
506
|
-
declare namespace Calendar {
|
|
507
|
-
var displayName: string;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
|
|
511
506
|
declare module "@tiptap/core" {
|
|
512
507
|
interface Commands<ReturnType> {
|
|
513
508
|
moodTracker: {
|
|
@@ -515,3 +510,8 @@ declare module "@tiptap/core" {
|
|
|
515
510
|
};
|
|
516
511
|
}
|
|
517
512
|
}
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
declare namespace Calendar {
|
|
516
|
+
var displayName: string;
|
|
517
|
+
}
|