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