@mirantes-micro/foundation-design-system 1.2.51 → 1.2.52
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 +24 -6
- package/dist/index.js +85 -102
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -482,16 +482,16 @@ declare function ChatView(): React__default.JSX.Element;
|
|
|
482
482
|
|
|
483
483
|
declare function ChatViewDesktopPage(): React__default.JSX.Element;
|
|
484
484
|
|
|
485
|
-
interface TargetEntity {
|
|
485
|
+
interface TargetEntity$1 {
|
|
486
486
|
id?: string;
|
|
487
487
|
name?: string;
|
|
488
488
|
avatar?: string;
|
|
489
489
|
logo?: string;
|
|
490
490
|
image?: string;
|
|
491
491
|
}
|
|
492
|
-
interface IMessageButtonProps {
|
|
493
|
-
user?: TargetEntity;
|
|
494
|
-
page?: TargetEntity;
|
|
492
|
+
interface IMessageButtonProps$1 {
|
|
493
|
+
user?: TargetEntity$1;
|
|
494
|
+
page?: TargetEntity$1;
|
|
495
495
|
icon?: React__default.ReactNode;
|
|
496
496
|
label?: string;
|
|
497
497
|
className?: string;
|
|
@@ -500,7 +500,7 @@ interface IMessageButtonProps {
|
|
|
500
500
|
isSharing?: boolean;
|
|
501
501
|
link?: string;
|
|
502
502
|
}
|
|
503
|
-
declare function MessageButton({ user, page, icon, label, className, disabled, onClick: customOnClick, isSharing, link, }: IMessageButtonProps): React__default.JSX.Element;
|
|
503
|
+
declare function MessageButton({ user, page, icon, label, className, disabled, onClick: customOnClick, isSharing, link, }: IMessageButtonProps$1): React__default.JSX.Element;
|
|
504
504
|
|
|
505
505
|
interface JobTriggerState {
|
|
506
506
|
isJobOpen: boolean;
|
|
@@ -736,4 +736,22 @@ declare const NoRecruitmentResponsiveIlustration: ({ className, }: {
|
|
|
736
736
|
className?: string;
|
|
737
737
|
}) => React__default.JSX.Element;
|
|
738
738
|
|
|
739
|
-
|
|
739
|
+
interface TargetEntity {
|
|
740
|
+
id?: string;
|
|
741
|
+
name?: string;
|
|
742
|
+
avatar?: string;
|
|
743
|
+
logo?: string;
|
|
744
|
+
image?: string;
|
|
745
|
+
slug?: string;
|
|
746
|
+
}
|
|
747
|
+
interface IMessageButtonProps {
|
|
748
|
+
user?: TargetEntity;
|
|
749
|
+
label?: string;
|
|
750
|
+
className?: string;
|
|
751
|
+
disabled?: boolean;
|
|
752
|
+
onClick?: () => void;
|
|
753
|
+
variant?: "default" | "small";
|
|
754
|
+
}
|
|
755
|
+
declare function MessagesButtonFromPage({ user, label, className, disabled, onClick: customOnClick, variant, }: IMessageButtonProps): React__default.JSX.Element;
|
|
756
|
+
|
|
757
|
+
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, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, 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 };
|