@factorialco/f0-react 1.311.0 → 1.311.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 +17 -23
- package/dist/experimental.js +7998 -8053
- package/dist/f0.d.ts +17 -17
- package/dist/f0.js +2 -2
- package/dist/{hooks-ncaiQCro.js → hooks-BivGRF9G.js} +442 -437
- 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
|
@@ -1670,8 +1670,6 @@ declare type Content = (ComponentProps<typeof DataList.Item> & {
|
|
|
1670
1670
|
type: "dot-tag";
|
|
1671
1671
|
});
|
|
1672
1672
|
|
|
1673
|
-
declare type ContentPadding = (typeof modalContentPaddings)[number];
|
|
1674
|
-
|
|
1675
1673
|
declare type CopyActionType = {
|
|
1676
1674
|
type: "copy";
|
|
1677
1675
|
text?: string;
|
|
@@ -4013,8 +4011,6 @@ declare interface MetadataProps {
|
|
|
4013
4011
|
|
|
4014
4012
|
export declare const MobileDropdown: ({ items, children }: DropdownProps) => JSX_2.Element;
|
|
4015
4013
|
|
|
4016
|
-
declare const modalContentPaddings: readonly ["sm", "md"];
|
|
4017
|
-
|
|
4018
4014
|
declare type ModalPosition = (typeof modalPositions)[number];
|
|
4019
4015
|
|
|
4020
4016
|
declare const modalPositions: readonly ["center", "left", "right", "fullscreen"];
|
|
@@ -4585,8 +4581,6 @@ declare type OneModalProps = {
|
|
|
4585
4581
|
onClose: () => void;
|
|
4586
4582
|
/** Whether to render the modal as a bottom sheet on mobile */
|
|
4587
4583
|
asBottomSheetInMobile?: boolean;
|
|
4588
|
-
/** the padding of internal content areas (header, content, footer) */
|
|
4589
|
-
contentPadding?: ContentPadding;
|
|
4590
4584
|
/** The position of the modal */
|
|
4591
4585
|
position?: ModalPosition;
|
|
4592
4586
|
/** The width of the modal. Only applies to center position but we can NOT use narrowing as position undefined is valid */
|
|
@@ -6438,6 +6432,23 @@ declare global {
|
|
|
6438
6432
|
}
|
|
6439
6433
|
}
|
|
6440
6434
|
|
|
6435
|
+
declare module "gridstack" {
|
|
6436
|
+
interface GridStackWidget {
|
|
6437
|
+
id?: string;
|
|
6438
|
+
allowedSizes?: Array<{
|
|
6439
|
+
w: number;
|
|
6440
|
+
h: number;
|
|
6441
|
+
}>;
|
|
6442
|
+
meta?: Record<string, unknown>;
|
|
6443
|
+
}
|
|
6444
|
+
interface GridStackNode {
|
|
6445
|
+
allowedSizes?: Array<{
|
|
6446
|
+
w: number;
|
|
6447
|
+
h: number;
|
|
6448
|
+
}>;
|
|
6449
|
+
}
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6441
6452
|
|
|
6442
6453
|
declare module "@tiptap/core" {
|
|
6443
6454
|
interface Commands<ReturnType> {
|
|
@@ -6465,23 +6476,6 @@ declare module "@tiptap/core" {
|
|
|
6465
6476
|
}
|
|
6466
6477
|
}
|
|
6467
6478
|
|
|
6468
|
-
declare module "gridstack" {
|
|
6469
|
-
interface GridStackWidget {
|
|
6470
|
-
id?: string;
|
|
6471
|
-
allowedSizes?: Array<{
|
|
6472
|
-
w: number;
|
|
6473
|
-
h: number;
|
|
6474
|
-
}>;
|
|
6475
|
-
meta?: Record<string, unknown>;
|
|
6476
|
-
}
|
|
6477
|
-
interface GridStackNode {
|
|
6478
|
-
allowedSizes?: Array<{
|
|
6479
|
-
w: number;
|
|
6480
|
-
h: number;
|
|
6481
|
-
}>;
|
|
6482
|
-
}
|
|
6483
|
-
}
|
|
6484
|
-
|
|
6485
6479
|
|
|
6486
6480
|
declare namespace Calendar {
|
|
6487
6481
|
var displayName: string;
|