@mirantes-micro/foundation-design-system 1.2.18 → 1.2.19
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 +107 -64
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -650,9 +650,10 @@ interface IRatingsCardProps {
|
|
|
650
650
|
userId?: string;
|
|
651
651
|
pageId?: string;
|
|
652
652
|
forAPage?: boolean;
|
|
653
|
+
currentUserId?: string;
|
|
653
654
|
}
|
|
654
655
|
|
|
655
|
-
declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, variant, forAPage }: IRatingsCardProps & {
|
|
656
|
+
declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, variant, forAPage, currentUserId, }: IRatingsCardProps & {
|
|
656
657
|
variant?: "maximized" | "minimized";
|
|
657
658
|
}): React__default.JSX.Element;
|
|
658
659
|
|