@mirantes-micro/foundation-design-system 1.2.240 → 1.2.241
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 -2
- package/dist/index.js +184 -184
- package/package.json +2 -25
package/dist/index.d.ts
CHANGED
|
@@ -2123,12 +2123,12 @@ type CreatePostToolbarProps = {
|
|
|
2123
2123
|
readonly onMentionClick?: () => void;
|
|
2124
2124
|
readonly showScheduleOption?: boolean;
|
|
2125
2125
|
readonly hasMedia?: boolean;
|
|
2126
|
-
readonly
|
|
2126
|
+
readonly onEmojiSelect?: (emoji: string) => void;
|
|
2127
2127
|
readonly onViewScheduledPosts?: () => void;
|
|
2128
2128
|
readonly onSubmit?: (type: 'REEL' | 'NORMAL') => void;
|
|
2129
2129
|
readonly postType?: string;
|
|
2130
2130
|
};
|
|
2131
|
-
declare function CreatePostToolbar({ onMediaSelect, isForReels, onScheduleClick, onMentionClick, hasMedia,
|
|
2131
|
+
declare function CreatePostToolbar({ onMediaSelect, isForReels, onScheduleClick, onMentionClick, hasMedia, onEmojiSelect, onViewScheduledPosts, onSubmit, postType, }: CreatePostToolbarProps): React__default.JSX.Element;
|
|
2132
2132
|
|
|
2133
2133
|
type CreatePostScheduleStepProps = {
|
|
2134
2134
|
readonly onBack: () => void;
|