@mirantes-micro/foundation-design-system 1.0.74 → 1.0.76

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 CHANGED
@@ -615,6 +615,22 @@ declare const designSystemPreset: {
615
615
 
616
616
  declare function ChatViewDesktopPage(): React__default.JSX.Element;
617
617
 
618
+ interface IMessageButton {
619
+ avatar?: string;
620
+ name?: string;
621
+ id?: string;
622
+ sendToPage?: boolean;
623
+ icon?: React__default.ReactNode;
624
+ label?: string;
625
+ className?: string;
626
+ disabled?: boolean;
627
+ onClick?: () => void;
628
+ isSharing?: boolean;
629
+ user?: any;
630
+ link?: string;
631
+ }
632
+ declare function MessageButton({ avatar, id, name, sendToPage, icon, label, className, disabled, onClick: customOnClick, isSharing, user, link }: IMessageButton): React__default.JSX.Element;
633
+
618
634
  interface JobTriggerState {
619
635
  isJobOpen: boolean;
620
636
  openJob: () => void;
@@ -639,4 +655,4 @@ interface CommunityTriggerState {
639
655
  }
640
656
  declare const useCommunityTriggerStore: zustand.UseBoundStore<zustand.StoreApi<CommunityTriggerState>>;
641
657
 
642
- export { AddressAutocompleteInput, BaseInput, Button, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesButton, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, designSystemPreset, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useSetChatVisibility };
658
+ export { AddressAutocompleteInput, BaseInput, Button, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MessageButton, MirantesButton, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, designSystemPreset, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useSetChatVisibility };