@mirantes-micro/foundation-design-system 1.2.175 → 1.2.177
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.d.ts +2 -1
- package/dist/index.js +387 -381
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1235,9 +1235,10 @@ interface SharePostModalProps {
|
|
|
1235
1235
|
isOpen: boolean;
|
|
1236
1236
|
onClose: () => void;
|
|
1237
1237
|
post: Post$2;
|
|
1238
|
+
isProfileLink?: boolean;
|
|
1238
1239
|
variant?: "share" | "repost";
|
|
1239
1240
|
}
|
|
1240
|
-
declare const SharePostModal: ({ isOpen, onClose, post, variant }: SharePostModalProps) => React__default.JSX.Element;
|
|
1241
|
+
declare const SharePostModal: ({ isOpen, onClose, post, variant, isProfileLink }: SharePostModalProps) => React__default.JSX.Element;
|
|
1241
1242
|
|
|
1242
1243
|
interface IActivateAccountModalProps {
|
|
1243
1244
|
isOpen: boolean;
|