@mirantes-micro/foundation-design-system 1.2.266 → 1.2.268
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 +189 -189
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -644,9 +644,10 @@ declare function AddressAutocompleteInput({ value, onChange, className, wrapperC
|
|
|
644
644
|
interface IActivateAccountModalProps {
|
|
645
645
|
isOpen: boolean;
|
|
646
646
|
onClose?: () => void;
|
|
647
|
+
externalLink?: string;
|
|
647
648
|
}
|
|
648
649
|
|
|
649
|
-
declare function ActivateAccountModal({ isOpen, onClose }: IActivateAccountModalProps): React__default.JSX.Element;
|
|
650
|
+
declare function ActivateAccountModal({ isOpen, onClose, externalLink }: IActivateAccountModalProps): React__default.JSX.Element;
|
|
650
651
|
|
|
651
652
|
declare function ChatContacts({ postId, onClose, searchTerm, selectedContacts, setSelectedContacts }: {
|
|
652
653
|
postId?: string;
|