@mirantes-micro/foundation-design-system 1.2.45 → 1.2.49
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 +13 -2
- package/dist/index.js +127 -120
- package/package.json +147 -136
package/dist/index.d.ts
CHANGED
|
@@ -680,8 +680,9 @@ interface RattingSuggestionCardProps {
|
|
|
680
680
|
totalRatings?: number;
|
|
681
681
|
};
|
|
682
682
|
renderFollowButton?: ReactNode;
|
|
683
|
+
averageRatingScore?: number;
|
|
683
684
|
}
|
|
684
|
-
declare function RattingSuggestionCard({ asPage, page, user, renderFollowButton, }: RattingSuggestionCardProps): React__default.JSX.Element;
|
|
685
|
+
declare function RattingSuggestionCard({ asPage, page, user, renderFollowButton, averageRatingScore, }: RattingSuggestionCardProps): React__default.JSX.Element;
|
|
685
686
|
|
|
686
687
|
interface ShareProfileButtonProps {
|
|
687
688
|
onClick: () => void;
|
|
@@ -707,4 +708,14 @@ type AvatarRatingBadgeProps = {
|
|
|
707
708
|
};
|
|
708
709
|
declare function AvatarRatingBadge({ name, asPage, src, rating }: AvatarRatingBadgeProps): React__default.JSX.Element;
|
|
709
710
|
|
|
710
|
-
|
|
711
|
+
type AddRatingProps = {
|
|
712
|
+
enableTitle?: boolean;
|
|
713
|
+
variantStars?: "large" | "small";
|
|
714
|
+
forAPage?: boolean;
|
|
715
|
+
receiverPageId?: string;
|
|
716
|
+
receiverUserId?: string;
|
|
717
|
+
className?: string;
|
|
718
|
+
};
|
|
719
|
+
declare function AddRating({ enableTitle, variantStars, forAPage, receiverPageId, receiverUserId, className, }: AddRatingProps): React__default.JSX.Element;
|
|
720
|
+
|
|
721
|
+
export { AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MirantesButton, MirantesFoundationProvider, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useSetChatVisibility };
|