@factorialco/f0-react 1.322.0 → 1.322.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 +22 -22
- package/dist/experimental.js +654 -651
- package/dist/f0.d.ts +22 -22
- package/dist/i18n-provider-defaults.d.ts +20 -20
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -5745,8 +5745,8 @@ declare type TableVisualizationOptions<R extends RecordType, _Filters extends Fi
|
|
|
5745
5745
|
};
|
|
5746
5746
|
|
|
5747
5747
|
declare type TableVisualizationSettings = {
|
|
5748
|
-
order
|
|
5749
|
-
hidden
|
|
5748
|
+
order?: ColId[];
|
|
5749
|
+
hidden?: ColId[];
|
|
5750
5750
|
};
|
|
5751
5751
|
|
|
5752
5752
|
export declare const Tabs: FC<TabsProps> & {
|
|
@@ -6406,23 +6406,6 @@ declare global {
|
|
|
6406
6406
|
}
|
|
6407
6407
|
}
|
|
6408
6408
|
|
|
6409
|
-
declare module "gridstack" {
|
|
6410
|
-
interface GridStackWidget {
|
|
6411
|
-
id?: string;
|
|
6412
|
-
allowedSizes?: Array<{
|
|
6413
|
-
w: number;
|
|
6414
|
-
h: number;
|
|
6415
|
-
}>;
|
|
6416
|
-
meta?: Record<string, unknown>;
|
|
6417
|
-
}
|
|
6418
|
-
interface GridStackNode {
|
|
6419
|
-
allowedSizes?: Array<{
|
|
6420
|
-
w: number;
|
|
6421
|
-
h: number;
|
|
6422
|
-
}>;
|
|
6423
|
-
}
|
|
6424
|
-
}
|
|
6425
|
-
|
|
6426
6409
|
|
|
6427
6410
|
declare module "@tiptap/core" {
|
|
6428
6411
|
interface Commands<ReturnType> {
|
|
@@ -6450,9 +6433,21 @@ declare module "@tiptap/core" {
|
|
|
6450
6433
|
}
|
|
6451
6434
|
}
|
|
6452
6435
|
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6436
|
+
declare module "gridstack" {
|
|
6437
|
+
interface GridStackWidget {
|
|
6438
|
+
id?: string;
|
|
6439
|
+
allowedSizes?: Array<{
|
|
6440
|
+
w: number;
|
|
6441
|
+
h: number;
|
|
6442
|
+
}>;
|
|
6443
|
+
meta?: Record<string, unknown>;
|
|
6444
|
+
}
|
|
6445
|
+
interface GridStackNode {
|
|
6446
|
+
allowedSizes?: Array<{
|
|
6447
|
+
w: number;
|
|
6448
|
+
h: number;
|
|
6449
|
+
}>;
|
|
6450
|
+
}
|
|
6456
6451
|
}
|
|
6457
6452
|
|
|
6458
6453
|
|
|
@@ -6463,3 +6458,8 @@ declare module "@tiptap/core" {
|
|
|
6463
6458
|
};
|
|
6464
6459
|
}
|
|
6465
6460
|
}
|
|
6461
|
+
|
|
6462
|
+
|
|
6463
|
+
declare namespace Calendar {
|
|
6464
|
+
var displayName: string;
|
|
6465
|
+
}
|