@mirantes-micro/foundation-design-system 1.2.236 → 1.2.237

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 CHANGED
@@ -950,8 +950,7 @@ type TRatingUserCard = {
950
950
  createdAt: string | Date;
951
951
  };
952
952
 
953
- declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, communityId, variant, forAPage, currentUserId, className, // 👈 novo prop
954
- userSlug, pageSlug, communitySlug, }: IRatingsCardProps & {
953
+ declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, communityId, variant, forAPage, currentUserId, className, userSlug, pageSlug, communitySlug, }: IRatingsCardProps & {
955
954
  variant?: "maximized" | "minimized";
956
955
  className?: string;
957
956
  userSlug?: string;
@@ -1044,12 +1043,14 @@ declare const NoRecruitmentResponsiveIlustration: ({ className, }: {
1044
1043
  className?: string;
1045
1044
  }) => React__default.JSX.Element;
1046
1045
 
1047
- declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId }: {
1046
+ declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings }: {
1048
1047
  variant?: "maximized" | "minimized";
1049
1048
  forPage?: boolean;
1050
1049
  receiverUserId?: string;
1051
1050
  receiverPageId?: string;
1052
1051
  receiverCommunityId?: string;
1052
+ inlinePreview?: boolean;
1053
+ onOpenAllRatings?: () => void;
1053
1054
  }): React__default.JSX.Element | null;
1054
1055
 
1055
1056
  declare function RatingsSummary({ variant, asPage, receiverUserId, receiverPageId, receiverCommunityId }: {