@nimbus-ds/components 5.12.0 → 5.13.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/index.d.ts CHANGED
@@ -2646,6 +2646,11 @@ export interface PopoverProperties extends PopoverSprinkle {
2646
2646
  * @default 10
2647
2647
  */
2648
2648
  offset?: number;
2649
+ /**
2650
+ * When enabled, renders an invisible overlay that prevents accidental clicks on elements behind the popover.
2651
+ * @default false
2652
+ */
2653
+ renderOverlay?: boolean;
2649
2654
  }
2650
2655
  export type PopoverProps = PopoverProperties & Omit<HTMLAttributes<HTMLDivElement>, "children" | "content">;
2651
2656
  export declare const Popover: React.FC<PopoverProps>;