@mirantes-micro/foundation-design-system 1.2.380 → 1.2.381

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
@@ -2233,6 +2233,7 @@ declare const useApiCheckRater: ({ userId, pageId, communityId, forAPage, inView
2233
2233
  }) => {
2234
2234
  hasRated: boolean;
2235
2235
  isCheckingRater: boolean;
2236
+ error: Error | null;
2236
2237
  };
2237
2238
 
2238
2239
  type AddRatingProps = {
@@ -2267,7 +2268,7 @@ type AvatarRatingBadgeProps = {
2267
2268
  };
2268
2269
  declare function AvatarRatingBadge({ name, asPage, src, rating, isCommunity, className, slug, }: AvatarRatingBadgeProps): React__default.JSX.Element;
2269
2270
 
2270
- declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings, }: {
2271
+ declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings, externalError, }: {
2271
2272
  variant?: "maximized" | "minimized";
2272
2273
  forPage?: boolean;
2273
2274
  receiverUserId?: string;
@@ -2275,6 +2276,7 @@ declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverU
2275
2276
  receiverCommunityId?: string;
2276
2277
  inlinePreview?: boolean;
2277
2278
  onOpenAllRatings?: () => void;
2279
+ externalError?: unknown;
2278
2280
  }): React__default.JSX.Element | null;
2279
2281
 
2280
2282
  interface IRatingsCardProps {