pesona-ui 0.1.29 → 0.1.31

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/dist/index.d.ts CHANGED
@@ -595,6 +595,7 @@ declare interface TabProps {
595
595
  children: default_2.ReactNode;
596
596
  title: string;
597
597
  icon?: ReactElement;
598
+ id?: string;
598
599
  }
599
600
 
600
601
  export declare const Tabs: default_2.FC<TabsProps>;
@@ -604,8 +605,8 @@ declare interface TabsProps {
604
605
  navClassName?: string;
605
606
  contentClassName?: string;
606
607
  children: default_2.ReactNode;
607
- activeTab: number;
608
- handleActiveTab: (index: number) => void;
608
+ activeTab: number | string;
609
+ handleActiveTab: (index: number | string) => void;
609
610
  customHeader?: default_2.ReactNode;
610
611
  }
611
612