@mirantes-micro/foundation-design-system 1.0.75 → 1.0.77
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 +18 -1
- package/dist/index.js +103 -77
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -615,6 +615,23 @@ 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
|
+
page?: any;
|
|
631
|
+
link?: string;
|
|
632
|
+
}
|
|
633
|
+
declare function MessageButton({ avatar, id, name, sendToPage, icon, label, className, disabled, onClick: customOnClick, isSharing, user, page, link }: IMessageButton): React__default.JSX.Element;
|
|
634
|
+
|
|
618
635
|
interface JobTriggerState {
|
|
619
636
|
isJobOpen: boolean;
|
|
620
637
|
openJob: () => void;
|
|
@@ -639,4 +656,4 @@ interface CommunityTriggerState {
|
|
|
639
656
|
}
|
|
640
657
|
declare const useCommunityTriggerStore: zustand.UseBoundStore<zustand.StoreApi<CommunityTriggerState>>;
|
|
641
658
|
|
|
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 };
|
|
659
|
+
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 };
|