@mirantes-micro/foundation-design-system 1.2.81 → 1.2.82
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 +10 -3
- package/dist/index.js +141 -137
- package/package.json +150 -150
package/dist/index.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ type User$2 = {
|
|
|
108
108
|
phone: string;
|
|
109
109
|
currentCompany?: string;
|
|
110
110
|
isOpenToWork: boolean;
|
|
111
|
+
isActive: boolean;
|
|
111
112
|
avatar: string;
|
|
112
113
|
accessToken: string;
|
|
113
114
|
refreshToken: string;
|
|
@@ -729,8 +730,7 @@ type AddRatingProps = {
|
|
|
729
730
|
receiverUserId?: string;
|
|
730
731
|
className?: string;
|
|
731
732
|
};
|
|
732
|
-
declare function AddRating({ enableTitle, variantStars, starSize,
|
|
733
|
-
forAPage, receiverPageId, receiverUserId, className, }: AddRatingProps): React__default.JSX.Element;
|
|
733
|
+
declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, className, }: AddRatingProps): React__default.JSX.Element;
|
|
734
734
|
|
|
735
735
|
interface PageFloatFooterProps {
|
|
736
736
|
/**
|
|
@@ -954,6 +954,13 @@ interface SharePostModalProps {
|
|
|
954
954
|
}
|
|
955
955
|
declare const SharePostModal: ({ isOpen, onClose, post, variant }: SharePostModalProps) => React__default.JSX.Element;
|
|
956
956
|
|
|
957
|
+
interface IActivateAccountModalProps {
|
|
958
|
+
isOpen: boolean;
|
|
959
|
+
onClose?: () => void;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
declare function ActivateAccountModal({ isOpen, onClose }: IActivateAccountModalProps): React__default.JSX.Element;
|
|
963
|
+
|
|
957
964
|
type User = {
|
|
958
965
|
id?: string;
|
|
959
966
|
name?: string;
|
|
@@ -1273,4 +1280,4 @@ declare function useBestAssetVersion(assetId?: string): {
|
|
|
1273
1280
|
error: Error | null;
|
|
1274
1281
|
};
|
|
1275
1282
|
|
|
1276
|
-
export { AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatListWrapper, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ReactPostButton, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, SharePostModal, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useAssetVersions, useBestAssetVersion, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useRestorePendingChat, useSetChatVisibility, useSignedUrl, useUploadAsset, useUploadAssetsBulk };
|
|
1283
|
+
export { ActivateAccountModal, AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatListWrapper, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ReactPostButton, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, SharePostModal, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useAssetVersions, useBestAssetVersion, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useRestorePendingChat, useSetChatVisibility, useSignedUrl, useUploadAsset, useUploadAssetsBulk };
|