@mirantes-micro/foundation-design-system 1.2.103 → 1.2.104
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 +3 -1
- package/dist/index.js +141 -134
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -903,8 +903,10 @@ type AddRatingProps = {
|
|
|
903
903
|
receiverUserId?: string;
|
|
904
904
|
receiverCommunityId?: string;
|
|
905
905
|
className?: string;
|
|
906
|
+
isCommunity?: boolean;
|
|
906
907
|
};
|
|
907
|
-
declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className,
|
|
908
|
+
declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className, // <-- RECEBIDO
|
|
909
|
+
isCommunity, }: AddRatingProps): React__default.JSX.Element;
|
|
908
910
|
|
|
909
911
|
interface PageFloatFooterProps {
|
|
910
912
|
/**
|