@mackin.com/styleguide 9.9.0 → 9.9.1
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 +6 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1095,7 +1095,9 @@ declare const ThemeRenderer: (p: ThemeRendererProps) => JSX.Element;
|
|
|
1095
1095
|
|
|
1096
1096
|
interface TabContainerProps {
|
|
1097
1097
|
tabs: {
|
|
1098
|
-
name: string;
|
|
1098
|
+
name: string | JSX.Element;
|
|
1099
|
+
/** The HTML title of the tab button. Defaults to 'name' prop. */
|
|
1100
|
+
title?: string;
|
|
1099
1101
|
getContent: () => JSX.Element;
|
|
1100
1102
|
}[];
|
|
1101
1103
|
id?: string;
|
|
@@ -1104,8 +1106,11 @@ interface TabContainerProps {
|
|
|
1104
1106
|
/** Defaults to 'tab'. */
|
|
1105
1107
|
variant?: 'tab' | 'button';
|
|
1106
1108
|
contentClassName?: string;
|
|
1109
|
+
/** This is applied to the `containerClassName` prop of TabHeader. */
|
|
1107
1110
|
tabHeaderClassName?: string;
|
|
1111
|
+
/** This is applied to the `tabClassName` prop of TabHeader. */
|
|
1108
1112
|
tabClassName?: string;
|
|
1113
|
+
/** This is applied to the `tabHeaderDividerClassName` prop of TabHeader. */
|
|
1109
1114
|
tabHeaderDividerClassName?: string;
|
|
1110
1115
|
/** Defaults to 0. */
|
|
1111
1116
|
startingIndex?: number;
|