frst-components 0.21.84 → 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 +25 -31
- package/dist/src/components/FI/ThreadComments/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/threadComments.styles.d.ts.map +1 -1
- package/dist/src/components/FI/interactionsModal/InteractionsModalStyles.d.ts.map +1 -1
- package/dist/src/components/commentaryBoxV2/CommentaryBoxV2.styles.d.ts.map +1 -1
- package/dist/src/components/commentaryBoxV2/index.d.ts +1 -1
- package/dist/src/components/commentaryBoxV2/index.d.ts.map +1 -1
- package/dist/src/components/input-comment/inputCommentStyles.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3193,9 +3193,9 @@ function Textarea(props) {
|
|
|
3193
3193
|
|
|
3194
3194
|
const InputWrapper$2 = styled__default["default"].div `
|
|
3195
3195
|
display: flex;
|
|
3196
|
-
align-items:
|
|
3196
|
+
align-items:center;
|
|
3197
3197
|
width: 100%;
|
|
3198
|
-
min-height:
|
|
3198
|
+
min-height: 48px;
|
|
3199
3199
|
position: 'relative';
|
|
3200
3200
|
background-color: ${({ theme, isInputLimit }) => !isInputLimit ? theme.colors.neutralsGrey9 : theme.colors.inputError};
|
|
3201
3201
|
|
|
@@ -3221,12 +3221,11 @@ const InputText$4 = styled__default["default"].div `
|
|
|
3221
3221
|
font-style: normal;
|
|
3222
3222
|
font-weight: normal;
|
|
3223
3223
|
font-size: 16px;
|
|
3224
|
-
line-height: 20px;
|
|
3225
3224
|
letter-spacing: -0.02em;
|
|
3226
3225
|
border: 1px solid ${({ theme }) => theme.colors.neutralsGrey3};
|
|
3227
3226
|
overflow: hidden;
|
|
3228
3227
|
background-color: inherit;
|
|
3229
|
-
|
|
3228
|
+
|
|
3230
3229
|
padding: 0;
|
|
3231
3230
|
margin: ${({ isPlaceholder }) => isPlaceholder ? '10px 4px 10px 15px' : '10px 4px 40px 15px'};
|
|
3232
3231
|
border: none;
|
|
@@ -3704,7 +3703,7 @@ const Mentions = (mention) => {
|
|
|
3704
3703
|
function InputComment$1({ placeholder, onChange, limit, users, showCharacterCounter, styles, onSendMentions, onContentFormat, onContentUnformat, disabled, className, value, replyMentionedUser, group_uuid, limitMessageExceeded }) {
|
|
3705
3704
|
const { handleInput, isPlaceholder, focus, setFocus, divInputRef, handleMentionUser, mentionTopPosition, setShowMention, showMention, textLength, styleLimitExceeded } = useInputHook({ limit, placeholder, onContentFormat, onContentUnformat, onSendMentions, onChange, value, replyMentionedUser });
|
|
3706
3705
|
const showMentions = showMention && ['b1005836-b0a6-4a50-8147-537ebdc64a75', '413c2f36-9195-4fef-86fe-572c49049007'].includes(group_uuid);
|
|
3707
|
-
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...styles }, tabIndex: 0, children: [jsxRuntime.jsxs(InputWrapper$2, { focus: focus, tabIndex: 1, isPlaceholder: isPlaceholder, isInputLimit: styleLimitExceeded, children: [jsxRuntime.jsx(InputText$4, { tabIndex: 2, contentEditable: true, ref: divInputRef, onFocus: () => setFocus(true), onBlur: () => setFocus(false), onKeyUpCapture: (event) => {
|
|
3706
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...styles, minHeight: '48px' }, tabIndex: 0, children: [jsxRuntime.jsxs(InputWrapper$2, { focus: focus, tabIndex: 1, isPlaceholder: isPlaceholder, isInputLimit: styleLimitExceeded, children: [jsxRuntime.jsx(InputText$4, { tabIndex: 2, contentEditable: true, ref: divInputRef, onFocus: () => setFocus(true), onBlur: () => setFocus(false), onKeyUpCapture: (event) => {
|
|
3708
3707
|
handleInput(event);
|
|
3709
3708
|
}, "data-text": "enter", isPlaceholder: isPlaceholder, suppressContentEditableWarning: true, children: jsxRuntime.jsx("p", { children: jsxRuntime.jsx("br", {}) }) }), showMentions && jsxRuntime.jsx(Mentions, { users: users, top: mentionTopPosition, onSelect: (user) => {
|
|
3710
3709
|
setShowMention(false);
|
|
@@ -4183,7 +4182,6 @@ const Box = styled__default["default"].div `
|
|
|
4183
4182
|
flex-direction: column;
|
|
4184
4183
|
justify-content: center;
|
|
4185
4184
|
align-items: flex-start;
|
|
4186
|
-
margin-left: 6px;
|
|
4187
4185
|
border-radius: 0px 16px 16px 16px;
|
|
4188
4186
|
background-color: #f2f2f2 ;
|
|
4189
4187
|
`;
|
|
@@ -4249,9 +4247,9 @@ const RelationContainer = styled__default["default"].div `
|
|
|
4249
4247
|
const InteractiveButtonsContainer = styled__default["default"].div `
|
|
4250
4248
|
display:flex;
|
|
4251
4249
|
flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
|
|
4252
|
-
gap:
|
|
4250
|
+
gap:4px;
|
|
4253
4251
|
margin-top: 4px;
|
|
4254
|
-
margin-left:
|
|
4252
|
+
margin-left: 40px;
|
|
4255
4253
|
align-items: center;
|
|
4256
4254
|
color: #444;
|
|
4257
4255
|
font-family: PT Sans;
|
|
@@ -4574,7 +4572,7 @@ const createUUID = () => {
|
|
|
4574
4572
|
return uuid;
|
|
4575
4573
|
};
|
|
4576
4574
|
|
|
4577
|
-
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 }) => {
|
|
4578
4576
|
const iDCommentPosted = commentId ? commentId : `IDCommentPosted-${createUUID()}`;
|
|
4579
4577
|
const [isLiked, setIsLiked] = React.useState(itsLiked);
|
|
4580
4578
|
const edit = {
|
|
@@ -4626,30 +4624,30 @@ const CommentaryBoxV2 = ({ userName, imgProfile, userCompany, userOffice, showMo
|
|
|
4626
4624
|
window.removeEventListener('resize', handleResize);
|
|
4627
4625
|
};
|
|
4628
4626
|
}, []);
|
|
4629
|
-
return (jsxRuntime.jsxs(styled.ThemeProvider, { theme: FRSTTheme, children: [jsxRuntime.jsxs(Container$i, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { size:
|
|
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 ?
|
|
4630
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", {})] })] }));
|
|
4631
4629
|
};
|
|
4632
4630
|
|
|
4633
4631
|
const Container$h = styled__default["default"].div `
|
|
4634
|
-
background-color:
|
|
4632
|
+
background-color: inerit;
|
|
4635
4633
|
display: flex;
|
|
4636
|
-
align-items:
|
|
4634
|
+
align-items: flex-start;
|
|
4637
4635
|
flex-direction: column;
|
|
4638
4636
|
width:100%;
|
|
4639
4637
|
`;
|
|
4640
4638
|
const CommentarysContainer = styled__default["default"].div `
|
|
4641
|
-
|
|
4642
|
-
|
|
4639
|
+
display: flex;
|
|
4640
|
+
flex-direction: column;
|
|
4641
|
+
width:100%;
|
|
4643
4642
|
`;
|
|
4644
4643
|
styled__default["default"].div `
|
|
4645
4644
|
display:flex;
|
|
4646
|
-
margin-bottom:
|
|
4645
|
+
margin-bottom:16px;
|
|
4647
4646
|
`;
|
|
4648
4647
|
styled__default["default"].div `
|
|
4649
4648
|
display:flex;
|
|
4650
4649
|
flex-direction:column;
|
|
4651
|
-
margin-
|
|
4652
|
-
margin-left:55px
|
|
4650
|
+
margin-left:0px
|
|
4653
4651
|
`;
|
|
4654
4652
|
const ViewReplysButtonContainer = styled__default["default"].div `
|
|
4655
4653
|
color: #444444;
|
|
@@ -4659,7 +4657,7 @@ font-style: normal;
|
|
|
4659
4657
|
font-weight: 400;
|
|
4660
4658
|
line-height: 110%;
|
|
4661
4659
|
position: relative;
|
|
4662
|
-
left:
|
|
4660
|
+
left: 59px;
|
|
4663
4661
|
margin-bottom:10px;
|
|
4664
4662
|
margin-top: 8px;
|
|
4665
4663
|
|
|
@@ -4669,7 +4667,8 @@ span{
|
|
|
4669
4667
|
`;
|
|
4670
4668
|
const RepplysContainer = styled__default["default"].div `
|
|
4671
4669
|
width: ${({ width }) => (width ? `${width}px` : 'auto')};
|
|
4672
|
-
margin-left:
|
|
4670
|
+
margin-left:60px;
|
|
4671
|
+
`;
|
|
4673
4672
|
|
|
4674
4673
|
const CommentaryBoxReply = ({ commentData, showMoreButtonText, showLessButtonText, answerButtonText, onClickAnswerButton }) => {
|
|
4675
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 }));
|
|
@@ -4756,7 +4755,7 @@ const InputContainer = styled__default["default"].div `
|
|
|
4756
4755
|
const Container$g = styled__default["default"].div `
|
|
4757
4756
|
display:flex;
|
|
4758
4757
|
justify-content:center;
|
|
4759
|
-
margin-bottom:
|
|
4758
|
+
margin-bottom:24px;
|
|
4760
4759
|
`;
|
|
4761
4760
|
|
|
4762
4761
|
const InputReply = ({ placeHolderText, getSearchUsers, onClickPublishButton, parentId, limitInput, publishButtonText, replyMentionedUser, imgProfile, styles, handleHiddenInput, group_uuid, limitMessageExceeded }) => {
|
|
@@ -4813,11 +4812,11 @@ const InputReply = ({ placeHolderText, getSearchUsers, onClickPublishButton, par
|
|
|
4813
4812
|
const response = await getSearchUsers(value);
|
|
4814
4813
|
setUsers(response?.data?.results || response);
|
|
4815
4814
|
};
|
|
4816
|
-
return (jsxRuntime.jsxs(Container$g, { children: [jsxRuntime.jsx(Avatar, { src: imgProfile, size: "32px", style: { marginTop: '
|
|
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) => {
|
|
4817
4816
|
handleSearchUsers(e);
|
|
4818
4817
|
}, value: comment, placeholder: placeHolderText, limit: limitInput, showCharacterCounter: true, onContentUnformat: (unformattedValue) => setCommentData(unformattedValue), onContentFormat: (formattedValue) => setCaptureFormattedValue(formattedValue), onSendMentions: (mentions) => setCaptureMentions(mentions), users: users,
|
|
4819
4818
|
//replyMentionedUser={!userMentionedOnReplied && user}
|
|
4820
|
-
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: '
|
|
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, {})] })] }));
|
|
4821
4820
|
};
|
|
4822
4821
|
|
|
4823
4822
|
const ThreadComments = ({ mainComment, listReplyComments, placeHolderText, onClickPublishButton, showReplysButtonText, publishButtonText, limitInputs, answerButtonText, loggedUserProfileImg, group_uuid, getSearchUsers, showMoreButtonText, showLessButtonText, styles, relationToPhaseText, limitMessageExceeded, size = 5, showMoreReplysButtonText }) => {
|
|
@@ -4848,7 +4847,7 @@ const ThreadComments = ({ mainComment, listReplyComments, placeHolderText, onCli
|
|
|
4848
4847
|
const handleCommentReplyReply = (idReply) => {
|
|
4849
4848
|
setShowInputByIdReply([...showInputByIdReply, idReply]);
|
|
4850
4849
|
};
|
|
4851
|
-
return (jsxRuntime.jsx(Container$h, { style: styles, children: jsxRuntime.jsxs(CommentarysContainer, { children: [jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(CommentaryBoxV2, {
|
|
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))) }))] }) }));
|
|
4852
4851
|
};
|
|
4853
4852
|
|
|
4854
4853
|
const ButtonCheckmark = styled__default["default"].div `
|
|
@@ -15617,7 +15616,7 @@ const ContentScroll = styled__default["default"].div `
|
|
|
15617
15616
|
`;
|
|
15618
15617
|
const CardItemUser = styled__default["default"].div `
|
|
15619
15618
|
width: calc(100% + 10px);
|
|
15620
|
-
height: 86px;
|
|
15619
|
+
min-height: 86px;
|
|
15621
15620
|
border-bottom: 1px solid #BDBDBD;
|
|
15622
15621
|
padding: 16px;
|
|
15623
15622
|
padding-left: 24px;
|
|
@@ -15638,14 +15637,9 @@ const NameUser$2 = styled__default["default"].div `
|
|
|
15638
15637
|
font-weight: 700;
|
|
15639
15638
|
font-size: 16px;
|
|
15640
15639
|
line-height: 110%;
|
|
15641
|
-
/* or 18px */
|
|
15642
|
-
|
|
15643
|
-
display: flex;
|
|
15644
|
-
align-items: center;
|
|
15645
|
-
|
|
15646
|
-
/* neutrals/neutral_1 */
|
|
15647
15640
|
|
|
15648
15641
|
color: #222222;
|
|
15642
|
+
|
|
15649
15643
|
`;
|
|
15650
15644
|
const PositionUser = styled__default["default"].div `
|
|
15651
15645
|
font-family: 'PT Sans';
|
|
@@ -15675,7 +15669,7 @@ const OrgUser = styled__default["default"].div `
|
|
|
15675
15669
|
|
|
15676
15670
|
color: #222222;
|
|
15677
15671
|
|
|
15678
|
-
max-width:
|
|
15672
|
+
max-width: 40ch;
|
|
15679
15673
|
overflow: hidden;
|
|
15680
15674
|
white-space: nowrap;
|
|
15681
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,
|
|
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,
|
|
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,
|
|
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;
|
|
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,
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inputCommentStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/inputCommentStyles.ts"],"names":[],"mappings":"AAQA,UAAU,OAAO;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,YAAY,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,UAAU,YAAY;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,mBAAmB,CAAC,EAAE,GAAG,CAAA;CAC5B;AACD,UAAU,QAAQ;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;CAE3B;AAED,eAAO,MAAM,YAAY,yEAoBxB,CAAA;AAED,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"inputCommentStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/inputCommentStyles.ts"],"names":[],"mappings":"AAQA,UAAU,OAAO;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,YAAY,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,UAAU,YAAY;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,mBAAmB,CAAC,EAAE,GAAG,CAAA;CAC5B;AACD,UAAU,QAAQ;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;CAE3B;AAED,eAAO,MAAM,YAAY,yEAoBxB,CAAA;AAED,eAAO,MAAM,SAAS,0EAiBrB,CAAA;AAED,eAAO,MAAM,SAAS,oEAiBrB,CAAA;AACD,eAAO,MAAM,eAAe,oEAG3B,CAAA;AACD,eAAO,MAAM,UAAU;mBAA8B,OAAO;SAkB3D,CAAA;AAED,eAAO,MAAM,WAAW,8EAWvB,CAAC;AACF,eAAO,MAAM,mBAAmB,oEAK/B,CAAA;AAGD,eAAO,MAAM,yBAAyB,qEAIrC,CAAA"}
|