@mirantes-micro/foundation-design-system 1.2.18 → 1.2.20
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 +5 -2
- package/dist/index.js +123 -77
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -650,9 +650,10 @@ interface IRatingsCardProps {
|
|
|
650
650
|
userId?: string;
|
|
651
651
|
pageId?: string;
|
|
652
652
|
forAPage?: boolean;
|
|
653
|
+
currentUserId?: string;
|
|
653
654
|
}
|
|
654
655
|
|
|
655
|
-
declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, variant, forAPage }: IRatingsCardProps & {
|
|
656
|
+
declare function RatingsCard({ isCurrentPageOrProfile, pageId, userId, variant, forAPage, currentUserId, }: IRatingsCardProps & {
|
|
656
657
|
variant?: "maximized" | "minimized";
|
|
657
658
|
}): React__default.JSX.Element;
|
|
658
659
|
|
|
@@ -679,4 +680,6 @@ interface RattingSuggestionCardProps {
|
|
|
679
680
|
}
|
|
680
681
|
declare function RattingSuggestionCard({ asPage, page, user, renderFollowButton, }: RattingSuggestionCardProps): React__default.JSX.Element;
|
|
681
682
|
|
|
682
|
-
|
|
683
|
+
declare function ShareProfileButton({ asPage, page, user }: RattingSuggestionCardProps): React__default.JSX.Element;
|
|
684
|
+
|
|
685
|
+
export { AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, 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, ShareProfileButton, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useSetChatVisibility };
|