@factorialco/f0-react 1.314.0 → 1.316.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.
@@ -2615,9 +2615,15 @@ declare type DropdownInternalProps = {
2615
2615
  align?: "start" | "end" | "center";
2616
2616
  open?: boolean;
2617
2617
  onOpenChange?: (open: boolean) => void;
2618
+ label?: string;
2618
2619
  } & DataAttributes_2;
2619
2620
 
2620
- export declare type DropdownItem = DropdownItemObject | DropdownItemSeparator;
2621
+ export declare type DropdownItem = DropdownItemObject | DropdownItemSeparator | DropdownItemLabel;
2622
+
2623
+ export declare type DropdownItemLabel = {
2624
+ type: "label";
2625
+ text: string;
2626
+ };
2621
2627
 
2622
2628
  export declare type DropdownItemObject = Pick<NavigationItem, "label" | "href"> & {
2623
2629
  type?: "item";
@@ -6494,11 +6500,6 @@ declare module "@tiptap/core" {
6494
6500
  }
6495
6501
 
6496
6502
 
6497
- declare namespace Calendar {
6498
- var displayName: string;
6499
- }
6500
-
6501
-
6502
6503
  declare module "@tiptap/core" {
6503
6504
  interface Commands<ReturnType> {
6504
6505
  moodTracker: {
@@ -6506,3 +6507,8 @@ declare module "@tiptap/core" {
6506
6507
  };
6507
6508
  }
6508
6509
  }
6510
+
6511
+
6512
+ declare namespace Calendar {
6513
+ var displayName: string;
6514
+ }