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 +3 -2
- package/dist/pesona-ui.cjs.js +42 -42
- package/dist/pesona-ui.css +2 -2
- package/dist/pesona-ui.es.js +809 -797
- package/package.json +1 -1
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
|
|