@mirantes-micro/foundation-design-system 1.2.189 → 1.2.190
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 +7 -1
- package/dist/index.js +155 -148
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ interface IMirantesFoundationContext {
|
|
|
86
86
|
environment?: string;
|
|
87
87
|
socketApiUrl?: string;
|
|
88
88
|
mirantesDomain?: string;
|
|
89
|
+
hostUrl?: string;
|
|
89
90
|
locale?: TLocale;
|
|
90
91
|
Link?: LinkComponent;
|
|
91
92
|
usePathname?: UsePathname;
|
|
@@ -828,10 +829,12 @@ interface OportunitiesState {
|
|
|
828
829
|
}
|
|
829
830
|
declare const useOportunitiesStore: zustand.UseBoundStore<zustand.StoreApi<OportunitiesState>>;
|
|
830
831
|
|
|
831
|
-
declare function ChatContacts({ postId, onClose, searchTerm }: {
|
|
832
|
+
declare function ChatContacts({ postId, onClose, searchTerm, selectedContacts, setSelectedContacts }: {
|
|
832
833
|
postId?: string;
|
|
833
834
|
onClose?: () => void;
|
|
834
835
|
searchTerm?: string;
|
|
836
|
+
selectedContacts?: Set<string>;
|
|
837
|
+
setSelectedContacts?: (contacts: Set<string> | ((prev: Set<string>) => Set<string>)) => void;
|
|
835
838
|
}): React__default.JSX.Element;
|
|
836
839
|
|
|
837
840
|
declare const DownloadMobileVersionBanner: () => React__default.JSX.Element;
|
|
@@ -1089,12 +1092,14 @@ type PostAttachmentProps$2 = {
|
|
|
1089
1092
|
description?: string;
|
|
1090
1093
|
imageUrl?: string;
|
|
1091
1094
|
url?: string;
|
|
1095
|
+
slug?: string;
|
|
1092
1096
|
type: string;
|
|
1093
1097
|
};
|
|
1094
1098
|
type Post$2 = {
|
|
1095
1099
|
user: User$2;
|
|
1096
1100
|
postType: "NORMAL" | "REEL";
|
|
1097
1101
|
id: string;
|
|
1102
|
+
slug: string;
|
|
1098
1103
|
createdAt: string;
|
|
1099
1104
|
scheduledAt?: string;
|
|
1100
1105
|
bio: string;
|
|
@@ -1112,6 +1117,7 @@ type Post$2 = {
|
|
|
1112
1117
|
description: string;
|
|
1113
1118
|
imageUrl: string;
|
|
1114
1119
|
url: string;
|
|
1120
|
+
slug: string;
|
|
1115
1121
|
};
|
|
1116
1122
|
images: PostAssetProps$2[];
|
|
1117
1123
|
videos: PostAssetProps$2[];
|