@mirantes-micro/foundation-design-system 1.2.110 → 1.2.112

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
@@ -953,13 +953,13 @@ declare function RatingsSummary({ variant, asPage, receiverUserId, receiverPageI
953
953
 
954
954
  declare function RatingUserCard({ user, rating, userRating, comment, createdAt, anonymous, }: TRatingUserCard): React__default.JSX.Element;
955
955
 
956
- declare const useApiCheckRater: ({ userId, pageId, communityId, forAPage }: {
956
+ declare const useApiCheckRater: ({ userId, pageId, communityId, forAPage, }: {
957
957
  userId?: string;
958
958
  pageId?: string;
959
959
  communityId?: string;
960
960
  forAPage?: boolean;
961
961
  }) => {
962
- hasRated: boolean | undefined;
962
+ hasRated: boolean;
963
963
  isCheckingRater: boolean;
964
964
  };
965
965
 
@@ -1655,10 +1655,13 @@ declare const useArticleNavigation: () => {
1655
1655
 
1656
1656
  declare function CreatePostCard(): React__default.JSX.Element;
1657
1657
 
1658
- declare const PostCardArticle: ({ src, title, content }: {
1658
+ declare const PostCardArticle: ({ src, title, content, isCompact, classImage, fontSize }: {
1659
1659
  src?: string;
1660
1660
  title?: string;
1661
1661
  content?: string;
1662
+ classImage?: string;
1663
+ fontSize?: string;
1664
+ isCompact?: boolean;
1662
1665
  }) => React__default.JSX.Element;
1663
1666
 
1664
1667
  interface ArticleViewerProps {