@propbinder/mobile-design 0.3.35 → 0.3.36

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.
@@ -22858,8 +22858,23 @@ class DsMobilePostDetailModalService extends BaseModalService {
22858
22858
  onTogglePostLike: options?.onTogglePostLike,
22859
22859
  onSubmitComment: options?.onSubmitComment,
22860
22860
  onToggleCommentLike: options?.onToggleCommentLike,
22861
+ onEditComment: options?.onEditComment,
22862
+ onDeleteComment: options?.onDeleteComment,
22861
22863
  currentUserName: options?.currentUserName ?? '',
22862
22864
  currentUserInitialsInput: options?.currentUserInitials ?? '',
22865
+ ...(options?.textReplySingle && { textReplySingle: options.textReplySingle }),
22866
+ ...(options?.textReplyPlural && { textReplyPlural: options.textReplyPlural }),
22867
+ ...(options?.textNoRepliesTitle && { textNoRepliesTitle: options.textNoRepliesTitle }),
22868
+ ...(options?.textNoRepliesDesc && { textNoRepliesDesc: options.textNoRepliesDesc }),
22869
+ ...(options?.textAddReply && { textAddReply: options.textAddReply }),
22870
+ ...(options?.textEditComment && { textEditComment: options.textEditComment }),
22871
+ ...(options?.textEditingComment && { textEditingComment: options.textEditingComment }),
22872
+ ...(options?.textReplyingTo && { textReplyingTo: options.textReplyingTo }),
22873
+ ...(options?.textSend && { textSend: options.textSend }),
22874
+ ...(options?.textClosePost && { textClosePost: options.textClosePost }),
22875
+ ...(options?.textJustNow && { textJustNow: options.textJustNow }),
22876
+ ...(options?.textEdited && { textEdited: options.textEdited }),
22877
+ ...(options?.textConfirmDelete && { textConfirmDelete: options.textConfirmDelete }),
22863
22878
  }, {
22864
22879
  keyboardClose: true, // Keep keyboard close behavior for this modal
22865
22880
  });