kui-basic 1.1.99 → 1.1.101

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
@@ -721,6 +721,7 @@ interface TabsPanelProps
721
721
  onChange?: TabChangeHandlerType
722
722
  indicatorPos?: TabsIndicatorPositions
723
723
  endComponent?: ReactNode
724
+ navigate?: (state: string) => void
724
725
  }
725
726
 
726
727
  type TabsPanelType = (props: TabsPanelProps) => React.ReactElement
@@ -784,6 +785,7 @@ interface TooltipProps
784
785
  onChange?: (isOpen: boolean) => void
785
786
  content: ReactNode
786
787
  open?: boolean
788
+ defaultOpen?: boolean
787
789
  placement?: Placement
788
790
  withArrow?: boolean
789
791
  cursor?: "pointer" | "auto"