@mirantes-micro/foundation-design-system 1.0.76 → 1.0.78
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 +2 -1
- package/dist/index.js +103 -77
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -627,9 +627,10 @@ interface IMessageButton {
|
|
|
627
627
|
onClick?: () => void;
|
|
628
628
|
isSharing?: boolean;
|
|
629
629
|
user?: any;
|
|
630
|
+
page?: any;
|
|
630
631
|
link?: string;
|
|
631
632
|
}
|
|
632
|
-
declare function MessageButton({ avatar, id, name, sendToPage, icon, label, className, disabled, onClick: customOnClick, isSharing, user, link }: IMessageButton): React__default.JSX.Element;
|
|
633
|
+
declare function MessageButton({ avatar, id, name, sendToPage, icon, label, className, disabled, onClick: customOnClick, isSharing, user, page, link }: IMessageButton): React__default.JSX.Element;
|
|
633
634
|
|
|
634
635
|
interface JobTriggerState {
|
|
635
636
|
isJobOpen: boolean;
|