@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.
- package/dist/experimental.d.ts +19 -17
- package/dist/experimental.js +6960 -6937
- package/dist/f0.d.ts +101 -18
- package/dist/f0.js +7485 -3801
- package/dist/{hooks-Ce6NpmKg.js → hooks-D1U1PpkP.js} +62844 -62814
- package/dist/i18n-provider-defaults.d.ts +17 -17
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -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;
|