kui-basic 1.1.131 → 1.1.133

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
@@ -695,23 +695,24 @@ type TabType = (props: TabProps) => React.ReactElement
695
695
 
696
696
  declare const Tab: TabType
697
697
 
698
- type TabsIndicatorPositions = "bottom" | "top"
699
-
700
- interface TabsProps
701
- extends Omit<
702
- React.DetailedHTMLProps<
703
- React.HTMLAttributes<HTMLDivElement>,
704
- HTMLDivElement
705
- >,
706
- "onChange"
707
- > {
708
- value: number
709
- onChange?: TabChangeHandlerType
710
- indicatorPos?: TabsIndicatorPositions
711
- }
712
-
713
- type TabsType = (props: TabsProps) => React.ReactElement
714
-
698
+ type TabsIndicatorPositions = "bottom" | "top"
699
+
700
+ interface TabsProps
701
+ extends Omit<
702
+ React.DetailedHTMLProps<
703
+ React.HTMLAttributes<HTMLDivElement>,
704
+ HTMLDivElement
705
+ >,
706
+ "onChange"
707
+ > {
708
+ value: number
709
+ onChange?: TabChangeHandlerType
710
+ indicatorPos?: TabsIndicatorPositions
711
+ id?: string
712
+ }
713
+
714
+ type TabsType = (props: TabsProps) => React.ReactElement
715
+
715
716
  declare const Tabs: TabsType
716
717
 
717
718
  interface TabsPanelProps