design-system-silkhaus 0.0.87-beta.develop-long-term-pricing.3 → 0.0.87-beta.security-deposit.0
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 +28 -28
- package/dist/index.d.ts +12 -0
- package/dist/index.js +4161 -3685
- package/dist/style.css +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -61,8 +61,20 @@ export declare interface AnimatedModalProps extends HTMLAttributes<HTMLDivElemen
|
|
|
61
61
|
show: boolean;
|
|
62
62
|
handleClose?: () => void;
|
|
63
63
|
animation?: 'slideUp' | 'slideDown' | 'fadeIn';
|
|
64
|
+
/**
|
|
65
|
+
* @deprecated
|
|
66
|
+
* Apply styles using `contentClassName` instead
|
|
67
|
+
*/
|
|
64
68
|
marginTop?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @deprecated
|
|
71
|
+
* Apply styles using `contentClassName` instead
|
|
72
|
+
*/
|
|
65
73
|
maxWidth?: string;
|
|
74
|
+
/**
|
|
75
|
+
* classes to apply on container that wraps the children passed to AnimatedModal
|
|
76
|
+
*/
|
|
77
|
+
contentClassName?: string;
|
|
66
78
|
}
|
|
67
79
|
|
|
68
80
|
export declare const Asterisk: React_2.ForwardRefExoticComponent<AsteriskProps & React_2.RefAttributes<HTMLSpanElement>>;
|