@homebound/beam 2.394.1 → 2.396.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.cts CHANGED
@@ -8298,6 +8298,7 @@ interface UseToastProps {
8298
8298
  }
8299
8299
  declare function useToast(): UseToastProps;
8300
8300
 
8301
+ type TooltipXss = Xss<Padding | "borderRadius">;
8301
8302
  interface TooltipProps {
8302
8303
  /** The content that shows up when hovered */
8303
8304
  title: ReactNode;
@@ -8306,6 +8307,7 @@ interface TooltipProps {
8306
8307
  delay?: number;
8307
8308
  disabled?: boolean;
8308
8309
  bgColor?: Palette;
8310
+ xss?: TooltipXss;
8309
8311
  }
8310
8312
  declare function Tooltip(props: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
8311
8313
  type Placement = "top" | "bottom" | "left" | "right" | "auto";
package/dist/index.d.ts CHANGED
@@ -8298,6 +8298,7 @@ interface UseToastProps {
8298
8298
  }
8299
8299
  declare function useToast(): UseToastProps;
8300
8300
 
8301
+ type TooltipXss = Xss<Padding | "borderRadius">;
8301
8302
  interface TooltipProps {
8302
8303
  /** The content that shows up when hovered */
8303
8304
  title: ReactNode;
@@ -8306,6 +8307,7 @@ interface TooltipProps {
8306
8307
  delay?: number;
8307
8308
  disabled?: boolean;
8308
8309
  bgColor?: Palette;
8310
+ xss?: TooltipXss;
8309
8311
  }
8310
8312
  declare function Tooltip(props: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
8311
8313
  type Placement = "top" | "bottom" | "left" | "right" | "auto";