ui-mathilde-web 0.1.26 → 0.1.28
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 +10 -3
- package/dist/ui-mathilde-web.js +1376 -1368
- package/dist/ui-mathilde-web.umd.cjs +25 -25
- package/package.json +1 -1
|
@@ -17,8 +17,12 @@ declare interface ButtonFormatProps {
|
|
|
17
17
|
className?: string;
|
|
18
18
|
type: string;
|
|
19
19
|
onClick?: () => void;
|
|
20
|
-
leftIcon?:
|
|
21
|
-
|
|
20
|
+
leftIcon?: React.ComponentType<{
|
|
21
|
+
size?: number;
|
|
22
|
+
}> | string;
|
|
23
|
+
rightIcon?: React.ComponentType<{
|
|
24
|
+
size?: number;
|
|
25
|
+
}> | string;
|
|
22
26
|
iconSize?: number;
|
|
23
27
|
}
|
|
24
28
|
|
|
@@ -231,6 +235,7 @@ declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectE
|
|
|
231
235
|
export declare const SidebarPro: default_2.FC<SidebarProProps>;
|
|
232
236
|
|
|
233
237
|
declare interface SidebarProProps {
|
|
238
|
+
aHref?: string;
|
|
234
239
|
logo: {
|
|
235
240
|
src: string;
|
|
236
241
|
alt: string;
|
|
@@ -295,12 +300,14 @@ declare interface TableOfContentsProps {
|
|
|
295
300
|
items: MenuItem_2[];
|
|
296
301
|
}
|
|
297
302
|
|
|
298
|
-
export declare function TabsComponent({ tabs, classes, tabItemClasses, contentClasses, defaultActiveTab, onTabChange }: TabsComponentProps): JSX_2.Element;
|
|
303
|
+
export declare function TabsComponent({ tabs, classes, tabItemClasses, activeTabStyles, inactiveTabStyles, contentClasses, defaultActiveTab, onTabChange }: TabsComponentProps): JSX_2.Element;
|
|
299
304
|
|
|
300
305
|
declare interface TabsComponentProps {
|
|
301
306
|
tabs: TabItem[];
|
|
302
307
|
classes?: string;
|
|
303
308
|
tabItemClasses?: string;
|
|
309
|
+
activeTabStyles?: React.CSSProperties;
|
|
310
|
+
inactiveTabStyles?: React.CSSProperties;
|
|
304
311
|
contentClasses?: string;
|
|
305
312
|
defaultActiveTab?: string;
|
|
306
313
|
onTabChange?: (tabId: string) => void;
|