@mirantes-micro/foundation-design-system 1.2.16 → 1.2.18
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 -0
- package/dist/index.js +80 -79
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -659,10 +659,12 @@ declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, variant,
|
|
|
659
659
|
interface RattingSuggestionCardProps {
|
|
660
660
|
asPage?: boolean;
|
|
661
661
|
page?: {
|
|
662
|
+
slug?: string;
|
|
662
663
|
id?: string;
|
|
663
664
|
sector?: string;
|
|
664
665
|
logo?: string;
|
|
665
666
|
rating?: number;
|
|
667
|
+
totalRatings?: number;
|
|
666
668
|
};
|
|
667
669
|
user?: {
|
|
668
670
|
avatar?: string;
|
|
@@ -671,6 +673,7 @@ interface RattingSuggestionCardProps {
|
|
|
671
673
|
headline?: string;
|
|
672
674
|
slug?: string;
|
|
673
675
|
rating?: number;
|
|
676
|
+
totalRatings?: number;
|
|
674
677
|
};
|
|
675
678
|
renderFollowButton?: ReactNode;
|
|
676
679
|
}
|