@solostylist/ui-kit 1.0.194 → 1.0.195
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.
|
@@ -6,10 +6,10 @@ import { BoxProps } from '@mui/material';
|
|
|
6
6
|
export interface STabPanelProps extends BoxProps {
|
|
7
7
|
/** Content to display in the tab panel */
|
|
8
8
|
children?: React.ReactNode;
|
|
9
|
-
/** Index of this specific tab panel
|
|
10
|
-
index: number;
|
|
11
|
-
/** Current active tab index from the parent tabs component */
|
|
12
|
-
value: number;
|
|
9
|
+
/** Index (or value) of this specific tab panel */
|
|
10
|
+
index: number | string;
|
|
11
|
+
/** Current active tab index (or value) from the parent tabs component */
|
|
12
|
+
value: number | string;
|
|
13
13
|
/** Keep the panel mounted in the DOM when not active */
|
|
14
14
|
keepMounted?: boolean;
|
|
15
15
|
}
|