@mirantes-micro/foundation-design-system 1.2.110 → 1.2.111
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 -2
- package/dist/index.js +89 -74
- package/package.json +1 -1
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
|
|
962
|
+
hasRated: boolean;
|
|
963
963
|
isCheckingRater: boolean;
|
|
964
964
|
};
|
|
965
965
|
|