@uob-web-and-digital/component-library 0.0.77 → 0.0.78

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.
@@ -0,0 +1 @@
1
+ export declare function formatTabName(tabsBlockName: string, tabTitle: string): string;
@@ -17,9 +17,13 @@ export interface TabPanelProps {
17
17
  * Is the panel active
18
18
  */
19
19
  isActive: boolean;
20
+ /**
21
+ * If used, the name of the parent tabs block
22
+ */
23
+ tabsBlockName?: string;
20
24
  /**
21
25
  * The child components to show in the panel
22
26
  */
23
27
  children: ReactNode;
24
28
  }
25
- export default function TabPanel({ title, theme, inverse, isActive, children }: TabPanelProps): ReactElement | null;
29
+ export default function TabPanel({ title, theme, inverse, isActive, children, tabsBlockName }: TabPanelProps): ReactElement | null;