ui-mathilde-web 0.1.26 → 0.1.27
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +3 -1
- package/dist/ui-mathilde-web.js +768 -765
- package/dist/ui-mathilde-web.umd.cjs +24 -24
- package/package.json +1 -1
|
@@ -295,12 +295,14 @@ declare interface TableOfContentsProps {
|
|
|
295
295
|
items: MenuItem_2[];
|
|
296
296
|
}
|
|
297
297
|
|
|
298
|
-
export declare function TabsComponent({ tabs, classes, tabItemClasses, contentClasses, defaultActiveTab, onTabChange }: TabsComponentProps): JSX_2.Element;
|
|
298
|
+
export declare function TabsComponent({ tabs, classes, tabItemClasses, activeTabStyles, inactiveTabStyles, contentClasses, defaultActiveTab, onTabChange }: TabsComponentProps): JSX_2.Element;
|
|
299
299
|
|
|
300
300
|
declare interface TabsComponentProps {
|
|
301
301
|
tabs: TabItem[];
|
|
302
302
|
classes?: string;
|
|
303
303
|
tabItemClasses?: string;
|
|
304
|
+
activeTabStyles?: React.CSSProperties;
|
|
305
|
+
inactiveTabStyles?: React.CSSProperties;
|
|
304
306
|
contentClasses?: string;
|
|
305
307
|
defaultActiveTab?: string;
|
|
306
308
|
onTabChange?: (tabId: string) => void;
|