@mirantes-micro/foundation-design-system 1.2.377 → 1.2.379
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 +11 -1
- package/dist/index.js +207 -212
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1273,8 +1273,19 @@ type PostAttachmentProps$2 = {
|
|
|
1273
1273
|
url?: string;
|
|
1274
1274
|
type: string;
|
|
1275
1275
|
};
|
|
1276
|
+
type PostAuthor = {
|
|
1277
|
+
id?: string;
|
|
1278
|
+
name?: string;
|
|
1279
|
+
avatar?: string | null;
|
|
1280
|
+
slug?: string;
|
|
1281
|
+
headline?: string | null;
|
|
1282
|
+
rating?: number;
|
|
1283
|
+
isFollowing?: boolean;
|
|
1284
|
+
};
|
|
1276
1285
|
type Post$2 = {
|
|
1277
1286
|
user: User$2;
|
|
1287
|
+
/** Timeline / feed-with-go APIs expose publisher as `author` instead of `user`. */
|
|
1288
|
+
author?: PostAuthor;
|
|
1278
1289
|
clientId?: string;
|
|
1279
1290
|
postType: "NORMAL" | "REEL" | "ARTICLE";
|
|
1280
1291
|
id: string;
|
|
@@ -1950,7 +1961,6 @@ type MentionableTextareaProps = {
|
|
|
1950
1961
|
minHeight?: number;
|
|
1951
1962
|
maxHeight?: number;
|
|
1952
1963
|
initialMentions?: MentionableItem[];
|
|
1953
|
-
resizable?: boolean;
|
|
1954
1964
|
};
|
|
1955
1965
|
declare const MentionableTextarea: React__default.ForwardRefExoticComponent<MentionableTextareaProps & React__default.RefAttributes<MentionableTextareaRef>>;
|
|
1956
1966
|
|