ui-mathilde-web 0.1.22 → 0.1.23

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.
@@ -259,6 +259,13 @@ declare interface SubMenuSection {
259
259
  items: MenuItem[];
260
260
  }
261
261
 
262
+ declare interface TabItem {
263
+ id: string;
264
+ title: string;
265
+ content: React.ReactNode;
266
+ icon?: React.ReactNode;
267
+ }
268
+
262
269
  export declare const TableComponent: React_2.FC<TableComponentProps>;
263
270
 
264
271
  declare interface TableComponentProps {
@@ -286,7 +293,16 @@ declare interface TableOfContentsProps {
286
293
  items: MenuItem_2[];
287
294
  }
288
295
 
289
- export declare function TabsComponent(): JSX_2.Element;
296
+ export declare function TabsComponent({ tabs, classes, tabItemClasses, contentClasses, defaultActiveTab, onTabChange }: TabsComponentProps): JSX_2.Element;
297
+
298
+ declare interface TabsComponentProps {
299
+ tabs: TabItem[];
300
+ classes?: string;
301
+ tabItemClasses?: string;
302
+ contentClasses?: string;
303
+ defaultActiveTab?: string;
304
+ onTabChange?: (tabId: string) => void;
305
+ }
290
306
 
291
307
  export declare const TermsCheckbox: default_2.FC<TermsCheckboxProps>;
292
308