@factorialco/f0-react 1.310.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/README.md +1 -1
- package/dist/experimental.d.ts +5 -11
- package/dist/experimental.js +8000 -8053
- package/dist/f0.d.ts +161 -14
- package/dist/f0.js +942 -895
- package/dist/{hooks-BxHngDSH.js → hooks-BivGRF9G.js} +17035 -16958
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
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 */
|
|
@@ -6483,6 +6477,11 @@ declare module "@tiptap/core" {
|
|
|
6483
6477
|
}
|
|
6484
6478
|
|
|
6485
6479
|
|
|
6480
|
+
declare namespace Calendar {
|
|
6481
|
+
var displayName: string;
|
|
6482
|
+
}
|
|
6483
|
+
|
|
6484
|
+
|
|
6486
6485
|
declare module "@tiptap/core" {
|
|
6487
6486
|
interface Commands<ReturnType> {
|
|
6488
6487
|
moodTracker: {
|
|
@@ -6490,8 +6489,3 @@ declare module "@tiptap/core" {
|
|
|
6490
6489
|
};
|
|
6491
6490
|
}
|
|
6492
6491
|
}
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
declare namespace Calendar {
|
|
6496
|
-
var displayName: string;
|
|
6497
|
-
}
|