kui-basic 1.1.97 → 1.1.100

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
@@ -706,24 +706,26 @@ type TabsType = (props: TabsProps) => React.ReactElement
706
706
 
707
707
  declare const Tabs: TabsType
708
708
 
709
- interface TabsPanelProps
710
- extends Omit<
711
- React.DetailedHTMLProps<
712
- React.HTMLAttributes<HTMLDivElement>,
713
- HTMLDivElement
714
- >,
715
- "onChange"
716
- > {
717
- tabs: (string | ReactNode)[]
718
- tabPanels?: React.ReactNode[]
719
- paths?: string[]
720
- activeTab?: number
721
- onChange?: TabChangeHandlerType
722
- indicatorPos?: TabsIndicatorPositions
723
- }
724
-
725
- type TabsPanelType = (props: TabsPanelProps) => React.ReactElement
726
-
709
+ interface TabsPanelProps
710
+ extends Omit<
711
+ React.DetailedHTMLProps<
712
+ React.HTMLAttributes<HTMLDivElement>,
713
+ HTMLDivElement
714
+ >,
715
+ "onChange"
716
+ > {
717
+ tabs: (string | ReactNode)[]
718
+ tabPanels?: React.ReactNode[]
719
+ paths?: string[]
720
+ activeTab?: number
721
+ onChange?: TabChangeHandlerType
722
+ indicatorPos?: TabsIndicatorPositions
723
+ endComponent?: ReactNode
724
+ navigate?: (state: string) => void
725
+ }
726
+
727
+ type TabsPanelType = (props: TabsPanelProps) => React.ReactElement
728
+
727
729
  declare const TabsPanel: TabsPanelType
728
730
 
729
731
  interface MenuPanelProps