@mirantes-micro/foundation-design-system 1.2.22 → 1.2.24
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 +16 -2
- package/dist/index.js +82 -82
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -680,6 +680,20 @@ interface RattingSuggestionCardProps {
|
|
|
680
680
|
}
|
|
681
681
|
declare function RattingSuggestionCard({ asPage, page, user, renderFollowButton, }: RattingSuggestionCardProps): React__default.JSX.Element;
|
|
682
682
|
|
|
683
|
-
|
|
683
|
+
interface ShareProfileButtonProps {
|
|
684
|
+
onClick: () => void;
|
|
685
|
+
}
|
|
686
|
+
declare function ShareProfileButton({ onClick }: ShareProfileButtonProps): React__default.JSX.Element;
|
|
687
|
+
|
|
688
|
+
interface ShareProfileModalProps extends RattingSuggestionCardProps {
|
|
689
|
+
isOpen: boolean;
|
|
690
|
+
onClose: () => void;
|
|
691
|
+
}
|
|
692
|
+
declare function ShareProfileModal({ asPage, page, user, isOpen, onClose }: ShareProfileModalProps): React__default.JSX.Element;
|
|
693
|
+
|
|
694
|
+
interface ShareProfileDivProps extends RattingSuggestionCardProps {
|
|
695
|
+
className?: string;
|
|
696
|
+
}
|
|
697
|
+
declare function ShareProfile({ asPage, page, user, className }: ShareProfileDivProps): React__default.JSX.Element;
|
|
684
698
|
|
|
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 };
|
|
699
|
+
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, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useSetChatVisibility };
|