@sequencing/design-system 1.0.20 → 1.0.21
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/documentation.json +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Atoms/TabMenu/TabMenu.d.ts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Atoms/TabMenu/TabMenu.d.ts +5 -1
- package/package.json +1 -1
|
@@ -4,11 +4,15 @@ interface Tab {
|
|
|
4
4
|
label: ReactNode;
|
|
5
5
|
tabId: number;
|
|
6
6
|
chip?: ReactNode;
|
|
7
|
+
customClass?: string;
|
|
7
8
|
}
|
|
8
9
|
export interface TabMenuProps {
|
|
9
10
|
/** Custom css class to customize the stylings */
|
|
10
11
|
customClass?: string;
|
|
11
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Custom css class to apply to all individual tabs. For full control over individual tabs' classes, set the `customClass`
|
|
14
|
+
* property individually on the `tabs` array
|
|
15
|
+
*/
|
|
12
16
|
tabCustomClass?: string;
|
|
13
17
|
/** This prop determines tab's 'value' for purposes of switching tabs */
|
|
14
18
|
tabs: Tab[];
|