@mirantes-micro/foundation-design-system 1.2.79 → 1.2.81
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 +116 -117
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -505,7 +505,10 @@ interface IMessageButtonProps$1 {
|
|
|
505
505
|
}
|
|
506
506
|
declare function MessageButton({ user, page, icon, label, className, disabled, onClick: customOnClick, isSharing, link, }: IMessageButtonProps$1): React__default.JSX.Element;
|
|
507
507
|
|
|
508
|
-
declare function ChatListWrapper(
|
|
508
|
+
declare function ChatListWrapper({ isChatOpen, isCompactMode }: {
|
|
509
|
+
isChatOpen?: boolean;
|
|
510
|
+
isCompactMode?: boolean;
|
|
511
|
+
}): React__default.JSX.Element;
|
|
509
512
|
|
|
510
513
|
interface JobTriggerState {
|
|
511
514
|
isJobOpen: boolean;
|
|
@@ -1267,7 +1270,7 @@ declare function useAssetVersions(assetId?: string): {
|
|
|
1267
1270
|
declare function useBestAssetVersion(assetId?: string): {
|
|
1268
1271
|
url: string | null | undefined;
|
|
1269
1272
|
isGettingUrl: boolean;
|
|
1270
|
-
error:
|
|
1273
|
+
error: Error | null;
|
|
1271
1274
|
};
|
|
1272
1275
|
|
|
1273
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 };
|