@factorialco/f0-react 1.322.1 → 1.324.0
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 +25 -20
- package/dist/experimental.js +2419 -2423
- package/dist/f0.d.ts +26 -21
- package/dist/f0.js +2 -2
- package/dist/{hooks-D-ClnmaM.js → hooks-B1ZF_2lS.js} +20447 -20396
- package/dist/i18n-provider-defaults.d.ts +20 -20
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -2996,6 +2996,11 @@ declare type F0SelectBaseProps<T extends string, R = unknown> = {
|
|
|
2996
2996
|
actions?: Action[];
|
|
2997
2997
|
/** Container element to render the portal content into */
|
|
2998
2998
|
portalContainer?: HTMLElement | null;
|
|
2999
|
+
/**
|
|
3000
|
+
* When true, renders the select as a static list without the input trigger.
|
|
3001
|
+
* Only displays the dropdown content with max height, border and scroll.
|
|
3002
|
+
*/
|
|
3003
|
+
asList?: boolean;
|
|
2999
3004
|
};
|
|
3000
3005
|
|
|
3001
3006
|
declare type F0SelectItemObject<T, R = unknown> = {
|
|
@@ -6406,6 +6411,23 @@ declare global {
|
|
|
6406
6411
|
}
|
|
6407
6412
|
}
|
|
6408
6413
|
|
|
6414
|
+
declare module "gridstack" {
|
|
6415
|
+
interface GridStackWidget {
|
|
6416
|
+
id?: string;
|
|
6417
|
+
allowedSizes?: Array<{
|
|
6418
|
+
w: number;
|
|
6419
|
+
h: number;
|
|
6420
|
+
}>;
|
|
6421
|
+
meta?: Record<string, unknown>;
|
|
6422
|
+
}
|
|
6423
|
+
interface GridStackNode {
|
|
6424
|
+
allowedSizes?: Array<{
|
|
6425
|
+
w: number;
|
|
6426
|
+
h: number;
|
|
6427
|
+
}>;
|
|
6428
|
+
}
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6409
6431
|
|
|
6410
6432
|
declare module "@tiptap/core" {
|
|
6411
6433
|
interface Commands<ReturnType> {
|
|
@@ -6433,21 +6455,9 @@ declare module "@tiptap/core" {
|
|
|
6433
6455
|
}
|
|
6434
6456
|
}
|
|
6435
6457
|
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
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
|
-
}
|
|
6458
|
+
|
|
6459
|
+
declare namespace Calendar {
|
|
6460
|
+
var displayName: string;
|
|
6451
6461
|
}
|
|
6452
6462
|
|
|
6453
6463
|
|
|
@@ -6458,8 +6468,3 @@ declare module "@tiptap/core" {
|
|
|
6458
6468
|
};
|
|
6459
6469
|
}
|
|
6460
6470
|
}
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
declare namespace Calendar {
|
|
6464
|
-
var displayName: string;
|
|
6465
|
-
}
|