kui-basic 1.1.253 → 1.1.254

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/index.d.ts CHANGED
@@ -806,6 +806,7 @@ interface TooltipProps
806
806
  fullWidth?: boolean
807
807
  leaveContent?: boolean
808
808
  isControlled?: boolean
809
+ renderPopper?: boolean
809
810
  }
810
811
 
811
812
  type TooltipStylesProps = {
@@ -829,6 +830,7 @@ type PopperBaseProps = {
829
830
  realPlacement?: Placement
830
831
  arrowPosition?: MiddlewareData["arrow"]
831
832
  strategy?: TooltipProps["strategy"]
833
+ renderPopper?: boolean
832
834
  } & React.HTMLAttributes<HTMLDivElement>
833
835
 
834
836
  declare const PopperBase: (props: PopperBaseProps) => React.ReactElement