ui-mathilde-web 0.1.27 → 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 +7 -2
- package/dist/ui-mathilde-web.js +730 -725
- package/dist/ui-mathilde-web.umd.cjs +17 -17
- 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;
|