kui-basic 1.1.148 → 1.1.149

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
@@ -784,7 +784,7 @@ type PopperBaseProps = {
784
784
 
785
785
  declare const PopperBase: (props: PopperBaseProps) => React.ReactElement
786
786
 
787
- type TooltipToggleMethods = "click" | "hover"
787
+ type TooltipToggleMethods = "click" | "hover" | "controlled"
788
788
 
789
789
  interface TooltipProps
790
790
  extends Omit<React.HTMLAttributes<HTMLDivElement>, "content" | "onChange"> {
@@ -803,6 +803,7 @@ interface TooltipProps
803
803
  withClosing?: boolean
804
804
  offsetOptions?: OffsetOptions
805
805
  strategy?: Strategy
806
+ fullWidth?: boolean
806
807
  }
807
808
 
808
809
  type TooltipStylesProps = {