frst-components 0.21.85 → 0.21.86

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.js CHANGED
@@ -4182,7 +4182,6 @@ const Box = styled__default["default"].div `
4182
4182
  flex-direction: column;
4183
4183
  justify-content: center;
4184
4184
  align-items: flex-start;
4185
- margin-left: 6px;
4186
4185
  border-radius: 0px 16px 16px 16px;
4187
4186
  background-color: #f2f2f2 ;
4188
4187
  `;
@@ -4248,9 +4247,9 @@ const RelationContainer = styled__default["default"].div `
4248
4247
  const InteractiveButtonsContainer = styled__default["default"].div `
4249
4248
  display:flex;
4250
4249
  flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
4251
- gap:16px;
4250
+ gap:4px;
4252
4251
  margin-top: 4px;
4253
- margin-left: 44px;
4252
+ margin-left: 40px;
4254
4253
  align-items: center;
4255
4254
  color: #444;
4256
4255
  font-family: PT Sans;
@@ -4573,7 +4572,7 @@ const createUUID = () => {
4573
4572
  return uuid;
4574
4573
  };
4575
4574
 
4576
- const CommentaryBoxV2 = ({ userName, imgProfile, userCompany, userOffice, showMoreText, relationToPhaseText, showLessText, showLikeButton, styles, actionLike, answerButtonText, likeButtonText, commentTextWithMention, editText, deleteText, isAuthor, isOwnerPost, howLongAgo, commentId, commentText, actionAnswer, onClickUserInfo, actionEditComment, actionDeleteComment, likesCount, hasActionToClickOnAvatar, showOptions, itsLiked }) => {
4575
+ const CommentaryBoxV2 = ({ userName, imgProfile, userCompany, userOffice, showMoreText, relationToPhaseText, showLessText, showLikeButton, styles, actionLike, answerButtonText, likeButtonText, commentTextWithMention, editText, deleteText, isAuthor, isOwnerPost, howLongAgo, commentId, commentText, actionAnswer, onClickUserInfo, actionEditComment, actionDeleteComment, isMainComment, likesCount, hasActionToClickOnAvatar, showOptions, itsLiked }) => {
4577
4576
  const iDCommentPosted = commentId ? commentId : `IDCommentPosted-${createUUID()}`;
4578
4577
  const [isLiked, setIsLiked] = React.useState(itsLiked);
4579
4578
  const edit = {
@@ -4625,30 +4624,30 @@ const CommentaryBoxV2 = ({ userName, imgProfile, userCompany, userOffice, showMo
4625
4624
  window.removeEventListener('resize', handleResize);
4626
4625
  };
4627
4626
  }, []);
4628
- return (jsxRuntime.jsxs(styled.ThemeProvider, { theme: FRSTTheme, children: [jsxRuntime.jsxs(Container$i, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { size: relationToPhaseText ? '48px' : '32px', src: imgProfile, onClick: onClickUserInfo, style: { cursor: hasActionToClickOnAvatar ? 'pointer' : 'default' } }), jsxRuntime.jsxs(Box, { children: [jsxRuntime.jsxs(UserDataContainer, { children: [jsxRuntime.jsxs(FirstChildUserData, { children: [jsxRuntime.jsx(Username, { children: userName }), likesCount > 0 && (jsxRuntime.jsxs(LikesContainer, { children: [jsxRuntime.jsx(IconLikeContainer, { children: jsxRuntime.jsx(IconLikeFilled, { fill: '#fff', stroke: '#fff', customColor_1: '#757575', width: '16px', height: '16px' }) }), jsxRuntime.jsx("p", { children: likesCount })] }))] }), jsxRuntime.jsxs(UserDataLastChild, { children: [userOffice && userOffice, " ", userCompany && `• ${userCompany}`, " ", howLongAgo && `• ${howLongAgo}`] })] }), relationToPhaseText && jsxRuntime.jsx(RelationContainer, { children: relationToPhaseText }), jsxRuntime.jsxs(TextContainer$1, { id: 'textContainerId', children: [jsxRuntime.jsx(Text$2, { style: isExpanded ? { display: 'block' } : { display: '-webkit-box' }, id: iDCommentPosted, dangerouslySetInnerHTML: { __html: buildStringWithLinkHTML(commentTextWithMention ? commentTextWithMention : commentText) } }), jsxRuntime.jsx(ShowMore$1, { isVisible: isEllipsisVisible, onClick: toggleExpand, children: isExpanded ? showLessText : showMoreText })] })] })] }), jsxRuntime.jsxs(InteractiveButtonsContainer, { children: [showLikeButton && (jsxRuntime.jsxs(FlexButtonContainer, { onClick: handleLike, children: [isLiked ?
4627
+ return (jsxRuntime.jsxs(styled.ThemeProvider, { theme: FRSTTheme, children: [jsxRuntime.jsxs(Container$i, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { size: isMainComment ? '48px' : '32px', src: imgProfile, onClick: onClickUserInfo, style: { cursor: hasActionToClickOnAvatar ? 'pointer' : 'default', marginRight: '6px' } }), jsxRuntime.jsxs(Box, { children: [jsxRuntime.jsxs(UserDataContainer, { children: [jsxRuntime.jsxs(FirstChildUserData, { children: [jsxRuntime.jsx(Username, { children: userName }), likesCount > 0 && (jsxRuntime.jsxs(LikesContainer, { children: [jsxRuntime.jsx(IconLikeContainer, { children: jsxRuntime.jsx(IconLikeFilled, { fill: '#fff', stroke: '#fff', customColor_1: '#757575', width: '16px', height: '16px' }) }), jsxRuntime.jsx("p", { children: likesCount })] }))] }), jsxRuntime.jsxs(UserDataLastChild, { children: [userOffice && userOffice, " ", userCompany && `• ${userCompany}`, " ", howLongAgo && `• ${howLongAgo}`] })] }), relationToPhaseText && jsxRuntime.jsx(RelationContainer, { children: relationToPhaseText }), jsxRuntime.jsxs(TextContainer$1, { id: 'textContainerId', children: [jsxRuntime.jsx(Text$2, { style: isExpanded ? { display: 'block' } : { display: '-webkit-box' }, id: iDCommentPosted, dangerouslySetInnerHTML: { __html: buildStringWithLinkHTML(commentTextWithMention ? commentTextWithMention : commentText) } }), jsxRuntime.jsx(ShowMore$1, { isVisible: isEllipsisVisible, onClick: toggleExpand, children: isExpanded ? showLessText : showMoreText })] })] })] }), jsxRuntime.jsxs(InteractiveButtonsContainer, { style: isMainComment ? { marginLeft: '55px' } : {}, children: [showLikeButton && (jsxRuntime.jsxs(FlexButtonContainer, { onClick: handleLike, children: [isLiked ?
4629
4628
  jsxRuntime.jsx(IconLikeFilled, {}) : jsxRuntime.jsx(IconLikeLine, { fill: '#444' }), jsxRuntime.jsx(MiniButton, { variant: 'terciary', onClick: handleLike, label: likeButtonText, active: isLiked, styles: { padding: '0px' } })] })), jsxRuntime.jsx(MiniButton, { variant: 'terciary', onClick: actionAnswer, label: answerButtonText, styles: {} }), showOptions && isAuthor ? jsxRuntime.jsx(MenuMore, { options: authorOptions }) : isOwnerPost ? jsxRuntime.jsx(MenuMore, { options: ownerPost }) : jsxRuntime.jsx("div", {})] })] }));
4630
4629
  };
4631
4630
 
4632
4631
  const Container$h = styled__default["default"].div `
4633
- background-color: #ffff;
4632
+ background-color: inerit;
4634
4633
  display: flex;
4635
- align-items: left;
4634
+ align-items: flex-start;
4636
4635
  flex-direction: column;
4637
4636
  width:100%;
4638
4637
  `;
4639
4638
  const CommentarysContainer = styled__default["default"].div `
4640
- align-items: center;
4641
- justify-content:center;
4639
+ display: flex;
4640
+ flex-direction: column;
4641
+ width:100%;
4642
4642
  `;
4643
4643
  styled__default["default"].div `
4644
4644
  display:flex;
4645
- margin-bottom:20px;
4645
+ margin-bottom:16px;
4646
4646
  `;
4647
4647
  styled__default["default"].div `
4648
4648
  display:flex;
4649
4649
  flex-direction:column;
4650
- margin-bottom:30px;
4651
- margin-left:55px
4650
+ margin-left:0px
4652
4651
  `;
4653
4652
  const ViewReplysButtonContainer = styled__default["default"].div `
4654
4653
  color: #444444;
@@ -4658,7 +4657,7 @@ font-style: normal;
4658
4657
  font-weight: 400;
4659
4658
  line-height: 110%;
4660
4659
  position: relative;
4661
- left: 45px;
4660
+ left: 59px;
4662
4661
  margin-bottom:10px;
4663
4662
  margin-top: 8px;
4664
4663
 
@@ -4668,7 +4667,8 @@ span{
4668
4667
  `;
4669
4668
  const RepplysContainer = styled__default["default"].div `
4670
4669
  width: ${({ width }) => (width ? `${width}px` : 'auto')};
4671
- margin-left:50px`;
4670
+ margin-left:60px;
4671
+ `;
4672
4672
 
4673
4673
  const CommentaryBoxReply = ({ commentData, showMoreButtonText, showLessButtonText, answerButtonText, onClickAnswerButton }) => {
4674
4674
  return (jsxRuntime.jsx(CommentaryBoxV2, { hasActionToClickOnAvatar: false, imgProfile: commentData.user?.avatar, itsLiked: false, userName: commentData.user?.name, userOffice: commentData.user?.role_name, userCompany: commentData.user?.company_name, commentId: commentData.id, commentText: commentData.text, howLongAgo: commentData.howLongAgo, showMoreText: showMoreButtonText, actionAnswer: () => onClickAnswerButton(commentData.id), showLessText: showLessButtonText, answerButtonText: answerButtonText, styles: { marginTop: '8px' }, commentTextWithMention: commentData.mentionText }));
@@ -4755,7 +4755,7 @@ const InputContainer = styled__default["default"].div `
4755
4755
  const Container$g = styled__default["default"].div `
4756
4756
  display:flex;
4757
4757
  justify-content:center;
4758
- margin-bottom:40px;
4758
+ margin-bottom:24px;
4759
4759
  `;
4760
4760
 
4761
4761
  const InputReply = ({ placeHolderText, getSearchUsers, onClickPublishButton, parentId, limitInput, publishButtonText, replyMentionedUser, imgProfile, styles, handleHiddenInput, group_uuid, limitMessageExceeded }) => {
@@ -4812,11 +4812,11 @@ const InputReply = ({ placeHolderText, getSearchUsers, onClickPublishButton, par
4812
4812
  const response = await getSearchUsers(value);
4813
4813
  setUsers(response?.data?.results || response);
4814
4814
  };
4815
- return (jsxRuntime.jsxs(Container$g, { children: [jsxRuntime.jsx(Avatar, { src: imgProfile, size: "32px", style: { marginTop: '50px', marginRight: '8px' } }), jsxRuntime.jsxs(InputContainer, { ref: inputRef, style: { ...styles }, children: [jsxRuntime.jsx(InputComment$1, { styles: { width: '100%', marginTop: '22.5px' }, className: "userComment", onChange: (e) => {
4815
+ return (jsxRuntime.jsxs(Container$g, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { src: imgProfile, size: "32px", style: { marginTop: '12px', marginRight: '8px' } }), jsxRuntime.jsxs(InputContainer, { ref: inputRef, style: { width: '100%', marginTop: '16px' }, children: [jsxRuntime.jsx(InputComment$1, { styles: { width: '100%' }, className: "userComment", onChange: (e) => {
4816
4816
  handleSearchUsers(e);
4817
4817
  }, value: comment, placeholder: placeHolderText, limit: limitInput, showCharacterCounter: true, onContentUnformat: (unformattedValue) => setCommentData(unformattedValue), onContentFormat: (formattedValue) => setCaptureFormattedValue(formattedValue), onSendMentions: (mentions) => setCaptureMentions(mentions), users: users,
4818
4818
  //replyMentionedUser={!userMentionedOnReplied && user}
4819
- group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }), jsxRuntime.jsx(MiniButton, { disabled: comment.length <= 0 || comment.length > limitInput || isLoading, label: publishButtonText, onClick: () => handlePublish(), variant: "primary", styles: { marginLeft: 'auto', marginTop: '15px' } }), isLoading && jsxRuntime.jsx(Loading, {})] })] }));
4819
+ group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }), jsxRuntime.jsx(MiniButton, { disabled: comment.length <= 0 || comment.length > limitInput || isLoading, label: publishButtonText, onClick: () => handlePublish(), variant: "primary", styles: { marginLeft: 'auto', marginTop: '14px' } }), isLoading && jsxRuntime.jsx(Loading, {})] })] }));
4820
4820
  };
4821
4821
 
4822
4822
  const ThreadComments = ({ mainComment, listReplyComments, placeHolderText, onClickPublishButton, showReplysButtonText, publishButtonText, limitInputs, answerButtonText, loggedUserProfileImg, group_uuid, getSearchUsers, showMoreButtonText, showLessButtonText, styles, relationToPhaseText, limitMessageExceeded, size = 5, showMoreReplysButtonText }) => {
@@ -4847,7 +4847,7 @@ const ThreadComments = ({ mainComment, listReplyComments, placeHolderText, onCli
4847
4847
  const handleCommentReplyReply = (idReply) => {
4848
4848
  setShowInputByIdReply([...showInputByIdReply, idReply]);
4849
4849
  };
4850
- return (jsxRuntime.jsx(Container$h, { style: styles, children: jsxRuntime.jsxs(CommentarysContainer, { children: [jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(CommentaryBoxV2, { styles: { marginBottom: '8px' }, hasActionToClickOnAvatar: false, imgProfile: mainComment.user?.avatar, itsLiked: false, userId: mainComment.user?.uuid, userName: mainComment.user?.name, userOffice: mainComment.user?.role_name, userCompany: mainComment.user?.company_name, commentId: mainComment.id, commentText: mainComment.text, howLongAgo: mainComment.howLongAgo, showMoreText: showMoreButtonText, showLessText: showLessButtonText, answerButtonText: answerButtonText, showLikeButton: false, actionAnswer: handleCommentReply, relationToPhaseText: relationToPhaseText, commentTextWithMention: mainComment.mentionText }), listReplyComments.length > visibleReplies && (jsxRuntime.jsx(ViewReplysButtonContainer, { children: jsxRuntime.jsx("span", { onClick: handleLoadMoreReplies, children: showReplysOnClickCounter === 0 ? showReplysButtonText : showMoreReplysButtonText }) })), showReplyInput && (jsxRuntime.jsx(InputReply, { styles: { width: '100%', marginTop: '24px' }, imgProfile: loggedUserProfileImg, idInput: `idInput-${mainComment.id}`, placeHolderText: placeHolderText, publishButtonText: publishButtonText, limitInput: limitInputs, onClickPublishButton: onClickPublishButton, getSearchUsers: getSearchUsers, replyMentionedUser: mainComment.user, parentId: Number(mainComment.id), handleHiddenInput: handleHiddenInput, group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }))] }), showAnswers && visibleReplies && (jsxRuntime.jsx(RepplysContainer, { children: listReplyComments.slice(0, visibleReplies).map((replyComment) => (jsxRuntime.jsxs(React.Fragment, { children: [jsxRuntime.jsx(CommentaryBoxReply, { commentData: replyComment, answerButtonText: '', showMoreButtonText: showMoreButtonText, showLessButtonText: showLessButtonText, onClickAnswerButton: handleCommentReplyReply }), showInputByIdReply.includes(replyComment.id) && (jsxRuntime.jsx(InputReply, { imgProfile: loggedUserProfileImg, styles: { width: '100%', marginTop: '24px' }, idInput: `idInput-${replyComment.id}`, placeHolderText: placeHolderText, publishButtonText: publishButtonText, limitInput: limitInputs, onClickPublishButton: onClickPublishButton, replyMentionedUser: replyComment.user, getSearchUsers: getSearchUsers, parentId: Number(mainComment.id), handleHiddenInput: (replyId = replyComment.id) => handleHiddenInputReply(replyId), group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }))] }, replyComment.id))) }))] }) }));
4850
+ return (jsxRuntime.jsx(Container$h, { style: styles, children: jsxRuntime.jsxs(CommentarysContainer, { children: [jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(CommentaryBoxV2, { hasActionToClickOnAvatar: false, imgProfile: mainComment.user?.avatar, itsLiked: false, userId: mainComment.user?.uuid, userName: mainComment.user?.name, userOffice: mainComment.user?.role_name, userCompany: mainComment.user?.company_name, commentId: mainComment.id, commentText: mainComment.text, howLongAgo: mainComment.howLongAgo, showMoreText: showMoreButtonText, showLessText: showLessButtonText, answerButtonText: answerButtonText, actionAnswer: handleCommentReply, relationToPhaseText: relationToPhaseText, commentTextWithMention: mainComment.mentionText, isMainComment: true }), listReplyComments.length > visibleReplies && (jsxRuntime.jsx(ViewReplysButtonContainer, { children: jsxRuntime.jsx("span", { onClick: handleLoadMoreReplies, children: showReplysOnClickCounter === 0 ? showReplysButtonText : showMoreReplysButtonText }) })), showReplyInput && (jsxRuntime.jsx(InputReply, { styles: { marginLeft: '60px' }, imgProfile: loggedUserProfileImg, idInput: `idInput-${mainComment.id}`, placeHolderText: placeHolderText, publishButtonText: publishButtonText, limitInput: limitInputs, onClickPublishButton: onClickPublishButton, getSearchUsers: getSearchUsers, replyMentionedUser: mainComment.user, parentId: Number(mainComment.id), handleHiddenInput: handleHiddenInput, group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }))] }), showAnswers && visibleReplies && (jsxRuntime.jsx(RepplysContainer, { children: listReplyComments.slice(0, visibleReplies).map((replyComment) => (jsxRuntime.jsxs(React.Fragment, { children: [jsxRuntime.jsx(CommentaryBoxReply, { commentData: replyComment, answerButtonText: '', showMoreButtonText: showMoreButtonText, showLessButtonText: showLessButtonText, onClickAnswerButton: handleCommentReplyReply }), showInputByIdReply.includes(replyComment.id) && (jsxRuntime.jsx(InputReply, { imgProfile: loggedUserProfileImg, styles: { width: '100%' }, idInput: `idInput-${replyComment.id}`, placeHolderText: placeHolderText, publishButtonText: publishButtonText, limitInput: limitInputs, onClickPublishButton: onClickPublishButton, replyMentionedUser: replyComment.user, getSearchUsers: getSearchUsers, parentId: Number(mainComment.id), handleHiddenInput: (replyId = replyComment.id) => handleHiddenInputReply(replyId), group_uuid: group_uuid, limitMessageExceeded: limitMessageExceeded }))] }, replyComment.id))) }))] }) }));
4851
4851
  };
4852
4852
 
4853
4853
  const ButtonCheckmark = styled__default["default"].div `
@@ -15616,7 +15616,7 @@ const ContentScroll = styled__default["default"].div `
15616
15616
  `;
15617
15617
  const CardItemUser = styled__default["default"].div `
15618
15618
  width: calc(100% + 10px);
15619
- height: 86px;
15619
+ min-height: 86px;
15620
15620
  border-bottom: 1px solid #BDBDBD;
15621
15621
  padding: 16px;
15622
15622
  padding-left: 24px;
@@ -15637,14 +15637,9 @@ const NameUser$2 = styled__default["default"].div `
15637
15637
  font-weight: 700;
15638
15638
  font-size: 16px;
15639
15639
  line-height: 110%;
15640
- /* or 18px */
15641
-
15642
- display: flex;
15643
- align-items: center;
15644
-
15645
- /* neutrals/neutral_1 */
15646
15640
 
15647
15641
  color: #222222;
15642
+
15648
15643
  `;
15649
15644
  const PositionUser = styled__default["default"].div `
15650
15645
  font-family: 'PT Sans';
@@ -15674,7 +15669,7 @@ const OrgUser = styled__default["default"].div `
15674
15669
 
15675
15670
  color: #222222;
15676
15671
 
15677
- max-width: 21ch;
15672
+ max-width: 40ch;
15678
15673
  overflow: hidden;
15679
15674
  white-space: nowrap;
15680
15675
  text-overflow: ellipsis;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/index.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAIxD,eAAO,MAAM,cAAc,mUAmBxB,eAAe,gBAuHjB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/index.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAIxD,eAAO,MAAM,cAAc,mUAmBxB,eAAe,gBAqHjB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"threadComments.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/threadComments.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,oEAMrB,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAGhC,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAGlC,CAAA;AACD,eAAO,MAAM,cAAc,oEAK1B,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAerC,CAAA;AAED,eAAO,MAAM,gBAAgB;YAAwB,MAAM;SAE1C,CAAA"}
1
+ {"version":3,"file":"threadComments.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/threadComments.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,oEAMrB,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAIhC,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAGlC,CAAA;AACD,eAAO,MAAM,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAerC,CAAA;AAED,eAAO,MAAM,gBAAgB;YAAwB,MAAM;SAG1D,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"InteractionsModalStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/interactionsModal/InteractionsModalStyles.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,SAAS,oLAiBrB,CAAA;AACD,eAAO,MAAM,UAAU,oEAWtB,CAAA;AACD,eAAO,MAAM,WAAW,oEAMvB,CAAA;AAED,eAAO,MAAM,SAAS,oEAQrB,CAAA;AAED,eAAO,MAAM,UAAU,oEAgCtB,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAElC,CAAA;AAGD,eAAO,MAAM,aAAa,oEAGzB,CAAA;AAED,eAAO,MAAM,YAAY,oEASxB,CAAA;AAGD,eAAO,MAAM,iBAAiB,oEAM7B,CAAA;AAED,eAAO,MAAM,QAAQ,oEAcpB,CAAA;AAED,eAAO,MAAM,YAAY,oEAexB,CAAA;AAED,eAAO,MAAM,OAAO,oEAgBnB,CAAA"}
1
+ {"version":3,"file":"InteractionsModalStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/interactionsModal/InteractionsModalStyles.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,SAAS,oLAiBrB,CAAA;AACD,eAAO,MAAM,UAAU,oEAWtB,CAAA;AACD,eAAO,MAAM,WAAW,oEAMvB,CAAA;AAED,eAAO,MAAM,SAAS,oEAQrB,CAAA;AAED,eAAO,MAAM,UAAU,oEAgCtB,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAElC,CAAA;AAGD,eAAO,MAAM,aAAa,oEAGzB,CAAA;AAED,eAAO,MAAM,YAAY,oEASxB,CAAA;AAGD,eAAO,MAAM,iBAAiB,oEAM7B,CAAA;AAED,eAAO,MAAM,QAAQ,oEASpB,CAAA;AAED,eAAO,MAAM,YAAY,oEAexB,CAAA;AAED,eAAO,MAAM,OAAO,oEAgBnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"CommentaryBoxV2.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/commentaryBoxV2/CommentaryBoxV2.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;YAAuB,MAAM;aAAU,MAAM;SAIlE,CAAC;AAEF,eAAO,MAAM,GAAG;YAAuB,MAAM;aAAU,MAAM;SAW5D,CAAC;AAEF,eAAO,MAAM,iBAAiB,oEAM7B,CAAA;AACD,eAAO,MAAM,QAAQ,mEAOpB,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAG7B,CAAA;AAEF,eAAO,MAAM,iBAAiB,oEAQ7B,CAAA;AAED,eAAO,MAAM,cAAc,oEAW1B,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAO7B,CAAA;AACD,eAAO,MAAM,iBAAiB,oEAU7B,CAAA;AAGD,eAAO,MAAM,2BAA2B,oEAkBvC,CAAA;AAED,eAAO,MAAM,mBAAmB,yEAsB/B,CAAA;AAED,eAAO,MAAM,IAAI,oEAUhB,CAAA;AAED,eAAO,MAAM,aAAa,oEACzB,CAAA;AACD,eAAO,MAAM,QAAQ;eAA0B,OAAO;SASrD,CAAC;AAEF,UAAU,OAAO;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB"}
1
+ {"version":3,"file":"CommentaryBoxV2.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/commentaryBoxV2/CommentaryBoxV2.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;YAAuB,MAAM;aAAU,MAAM;SAIlE,CAAC;AAEF,eAAO,MAAM,GAAG;YAAuB,MAAM;aAAU,MAAM;SAU5D,CAAC;AAEF,eAAO,MAAM,iBAAiB,oEAM7B,CAAA;AACD,eAAO,MAAM,QAAQ,mEAOpB,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAG7B,CAAA;AAEF,eAAO,MAAM,iBAAiB,oEAQ7B,CAAA;AAED,eAAO,MAAM,cAAc,oEAW1B,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAO7B,CAAA;AACD,eAAO,MAAM,iBAAiB,oEAU7B,CAAA;AAGD,eAAO,MAAM,2BAA2B,oEAkBvC,CAAA;AAED,eAAO,MAAM,mBAAmB,yEAsB/B,CAAA;AAED,eAAO,MAAM,IAAI,oEAUhB,CAAA;AAED,eAAO,MAAM,aAAa,oEACzB,CAAA;AACD,eAAO,MAAM,QAAQ;eAA0B,OAAO;SASrD,CAAC;AAEF,UAAU,OAAO;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB"}
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import { ICommentaryBoxV2 } from './CommentaryBoxV2.types';
3
- export declare const CommentaryBoxV2: ({ userName, imgProfile, userCompany, userOffice, showMoreText, relationToPhaseText, showLessText, showLikeButton, styles, actionLike, answerButtonText, likeButtonText, commentTextWithMention, editText, deleteText, isAuthor, isOwnerPost, howLongAgo, commentId, commentText, actionAnswer, onClickUserInfo, actionEditComment, actionDeleteComment, likesCount, hasActionToClickOnAvatar, showOptions, itsLiked }: ICommentaryBoxV2) => JSX.Element;
3
+ export declare const CommentaryBoxV2: ({ userName, imgProfile, userCompany, userOffice, showMoreText, relationToPhaseText, showLessText, showLikeButton, styles, actionLike, answerButtonText, likeButtonText, commentTextWithMention, editText, deleteText, isAuthor, isOwnerPost, howLongAgo, commentId, commentText, actionAnswer, onClickUserInfo, actionEditComment, actionDeleteComment, isMainComment, likesCount, hasActionToClickOnAvatar, showOptions, itsLiked }: ICommentaryBoxV2) => JSX.Element;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/commentaryBoxV2/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAC,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AASzD,eAAO,MAAM,eAAe,0ZAGsC,gBAAgB,gBAiHjF,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/commentaryBoxV2/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAC,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AASzD,eAAO,MAAM,eAAe,yaAGsC,gBAAgB,gBAiHjF,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "frst-components",
3
3
  "homepage": "http://FRST-Falconi.github.io/storybook.frstfalconi.com",
4
- "version": "0.21.85",
4
+ "version": "0.21.86",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",