@myelmut/design-system 0.1.44 → 0.1.45
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +5 -4
- package/dist/index.es.js.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -575,7 +575,7 @@ declare interface ResponsiveImageProps {
|
|
|
575
575
|
fadeOnLoad?: boolean;
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
export declare const SimpleIllustratedCardButton: ({ label, layout, illustration, disabled, className, illustrationClassName, ...props }: SimpleIllustratedCardButtonProps) => JSX.Element;
|
|
578
|
+
export declare const SimpleIllustratedCardButton: ({ label, layout, illustration, disabled, className, illustrationClassName, isActive, ...props }: SimpleIllustratedCardButtonProps) => JSX.Element;
|
|
579
579
|
|
|
580
580
|
declare type SimpleIllustratedCardButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
581
581
|
label: string;
|
|
@@ -583,6 +583,7 @@ declare type SimpleIllustratedCardButtonProps = React.ButtonHTMLAttributes<HTMLB
|
|
|
583
583
|
layout?: 'vertical' | 'horizontal';
|
|
584
584
|
className?: string;
|
|
585
585
|
illustrationClassName?: string;
|
|
586
|
+
isActive?: boolean;
|
|
586
587
|
};
|
|
587
588
|
|
|
588
589
|
declare type SingleDropdownMenuProps = CommonProps_2 & {
|