frst-components 0.21.85 → 0.21.87
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 +92 -32
- package/dist/src/components/DS/dropdown-Multiselect/styles/multiselectStyles.d.ts.map +1 -1
- package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts.map +1 -1
- package/dist/src/components/DS/scroll-container-v2/ButtonControl/index.d.ts.map +1 -1
- package/dist/src/components/DS/scroll-container-v2/ButtonControl/useLongPress.d.ts.map +1 -1
- package/dist/src/components/DS/select/styles/StylesSelect.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.d.ts.map +1 -1
- package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
- package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
- package/dist/src/components/IJ/thumbListContent/index.d.ts +2 -0
- package/dist/src/components/IJ/thumbListContent/index.d.ts.map +1 -1
- package/dist/src/components/IJ/thumbListContent/thumbListContentStyles.d.ts +4 -0
- package/dist/src/components/IJ/thumbListContent/thumbListContentStyles.d.ts.map +1 -1
- package/dist/src/components/cardLT/MessageBox/icons/errorIcon.d.ts.map +1 -1
- package/dist/src/components/cardLT/MessageBox/icons/successIcon.d.ts.map +1 -1
- package/dist/src/components/cardLT/MessageBox/icons/warningIcon.d.ts.map +1 -1
- package/dist/src/components/global-menu/components/customMenu/index.d.ts.map +1 -1
- package/dist/src/components/global-menu/globalMenuStyles.d.ts.map +1 -1
- package/dist/src/components/global-menu/index.d.ts.map +1 -1
- package/dist/src/components/input-comment/inputCommentStyles.d.ts.map +1 -1
- package/package.json +1 -1
- package/public/img/SmartImg.png +0 -0
- package/public/img/thumbVideo.png +0 -0
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:
|
|
4250
|
+
gap:4px;
|
|
4252
4251
|
margin-top: 4px;
|
|
4253
|
-
margin-left:
|
|
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:
|
|
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:
|
|
4632
|
+
background-color: inerit;
|
|
4634
4633
|
display: flex;
|
|
4635
|
-
align-items:
|
|
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
|
-
|
|
4641
|
-
|
|
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:
|
|
4645
|
+
margin-bottom:16px;
|
|
4646
4646
|
`;
|
|
4647
4647
|
styled__default["default"].div `
|
|
4648
4648
|
display:flex;
|
|
4649
4649
|
flex-direction:column;
|
|
4650
|
-
margin-
|
|
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:
|
|
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:
|
|
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:
|
|
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: '
|
|
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: '
|
|
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, {
|
|
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 `
|
|
@@ -10078,6 +10078,8 @@ const MenuContainer = styled__default["default"].div `
|
|
|
10078
10078
|
const WrapperLogo = styled__default["default"].div `
|
|
10079
10079
|
margin-right: 65px;
|
|
10080
10080
|
cursor: pointer;
|
|
10081
|
+
position: relative;
|
|
10082
|
+
top: 3px;
|
|
10081
10083
|
`;
|
|
10082
10084
|
const HamburgerButton = styled__default["default"].div `
|
|
10083
10085
|
cursor: pointer;
|
|
@@ -11272,8 +11274,8 @@ function GlobalMenu({ variant, menu, customMenu, user, search, notification, lan
|
|
|
11272
11274
|
}, children: SubMenu.map((item, index) => {
|
|
11273
11275
|
return (jsxRuntime.jsx(ItemGlobalMenu, { label: item.label, variant: "LXP", type: "submenu", handleOnClick: () => item.onClick('tes'), style: { paddingRight: '10px', paddingLeft: '10px' } }, item.id ? item.id : index));
|
|
11274
11276
|
}) }))] }), openNotificationMobile && windowSize[0] < 700 ? (jsxRuntime.jsx(NotificationPopOver, { handleClickMarkRead: notification.handleClickMarkRead, isOpen: openNotificationMobile, anchor: anchorNotification, textEmptyState: notification.textEmptyState, notificationList: updatedNotificationList, textMarkAllAsRead: notification.textMarkAllAsRead, textNotification: notification.textNotification, isMobile: true, setOnAreaPopOver: (e) => setOnAreaPopOver(e), textBack: notification.textBack, handleClickBack: () => handleCloseNotification() })) : null] })) : variant === 'default' ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(MenuMobile, { onClickExit: onClickExit, languageSelected: languageSelected, variant: 'default', items: menu, isVisible: isVisibleMenuMobile, setVisible: (e) => setIsVisibleMenuMobile(e), onClickSite: onClickSite, onClickLinkedin: onClickLinkedin, onClickInstagram: onClickInstagram, onClickYoutube: onClickYoutube, onClickSpotify: onClickSpotify, onClickPodCast: onClickPodCast, customMenu: customMenu }), jsxRuntime.jsx("div", { style: { width: '100%', display: 'flex', flexDirection: 'column' }, children: jsxRuntime.jsxs(MenuContainer, { variant: variant, style: {
|
|
11275
|
-
paddingRight: windowSize[0] > 1400 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11276
|
-
paddingLeft: windowSize[0] > 1400 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11277
|
+
paddingRight: windowSize[0] > 1400 ? '124px' : windowSize[0] > 1199 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11278
|
+
paddingLeft: windowSize[0] > 1400 ? '225px' : windowSize[0] > 1199 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11277
11279
|
...style
|
|
11278
11280
|
}, children: [isMobileVersion && (jsxRuntime.jsx(HamburgerButton, { style: { marginLeft: 0 }, onClick: () => onClickMenuHamburger(), children: jsxRuntime.jsx(IconHamburgerMenu, {}) })), isTabletVersion && (jsxRuntime.jsx(HamburgerButton, { onClick: () => onClickMenuHamburger(), children: jsxRuntime.jsx(IconHamburgerMenu, {}) })), !isMobileVersion && !isTabletVersion && (jsxRuntime.jsx(WrapperLogo, { onClick: () => onClickLogo(), children: jsxRuntime.jsx(FRSTLogo, { height: "28", fill: FRSTTheme['colors'].primary1 }) })), showLogo && (jsxRuntime.jsx(WrapperLogo, { onClick: () => onClickLogo(), style: { marginRight: '0px' }, children: jsxRuntime.jsx(FRSTLogo, { height: "28", fill: FRSTTheme['colors'].primary1 }) })), jsxRuntime.jsx(WrapperMenu, { style: { height: '100%' }, children: !isMobileVersion && !isTabletVersion && showSearchField && (jsxRuntime.jsx(FieldSearch, { variant: "LXP", value: valueSearch, onFilter: search.onFilter, onChange: (e) => handleChangeValueSearch(e.target.value), placeholder: search.label, loading: loadingSearch, textLoading: search.textLoading, fieldSearchIsOpen: controlExpandedSearchMobile, setFieldSearchIsOpen: setControlExpandedSearchMobile, isLabeledResult: search.isLabeledResult, listResults: search.isLabeledResult ? null : valueListSearch, labeledResultList: search.isLabeledResult ? valueListSearch : null, historicResults: search.historicResults, isMobileVersion: isMobileVersion, hasOptionSeeAll: search.hasOptionSeeAll, seeAll: search.seeAll, style: {
|
|
11279
11281
|
width: isMobileVersion ? '190px' : '332px'
|
|
@@ -15616,7 +15618,7 @@ const ContentScroll = styled__default["default"].div `
|
|
|
15616
15618
|
`;
|
|
15617
15619
|
const CardItemUser = styled__default["default"].div `
|
|
15618
15620
|
width: calc(100% + 10px);
|
|
15619
|
-
height: 86px;
|
|
15621
|
+
min-height: 86px;
|
|
15620
15622
|
border-bottom: 1px solid #BDBDBD;
|
|
15621
15623
|
padding: 16px;
|
|
15622
15624
|
padding-left: 24px;
|
|
@@ -15637,14 +15639,9 @@ const NameUser$2 = styled__default["default"].div `
|
|
|
15637
15639
|
font-weight: 700;
|
|
15638
15640
|
font-size: 16px;
|
|
15639
15641
|
line-height: 110%;
|
|
15640
|
-
/* or 18px */
|
|
15641
|
-
|
|
15642
|
-
display: flex;
|
|
15643
|
-
align-items: center;
|
|
15644
|
-
|
|
15645
|
-
/* neutrals/neutral_1 */
|
|
15646
15642
|
|
|
15647
15643
|
color: #222222;
|
|
15644
|
+
|
|
15648
15645
|
`;
|
|
15649
15646
|
const PositionUser = styled__default["default"].div `
|
|
15650
15647
|
font-family: 'PT Sans';
|
|
@@ -15674,7 +15671,7 @@ const OrgUser = styled__default["default"].div `
|
|
|
15674
15671
|
|
|
15675
15672
|
color: #222222;
|
|
15676
15673
|
|
|
15677
|
-
max-width:
|
|
15674
|
+
max-width: 40ch;
|
|
15678
15675
|
overflow: hidden;
|
|
15679
15676
|
white-space: nowrap;
|
|
15680
15677
|
text-overflow: ellipsis;
|
|
@@ -15894,6 +15891,11 @@ const imageThumbContent = styled__default["default"].div `
|
|
|
15894
15891
|
display: flex;
|
|
15895
15892
|
flex-direction: column;
|
|
15896
15893
|
justify-content: flex-end;
|
|
15894
|
+
border-radius: 6.733px;
|
|
15895
|
+
align-items: center;
|
|
15896
|
+
margin-left: -1px;
|
|
15897
|
+
background: rgba(0, 0, 0, 0.30);
|
|
15898
|
+
|
|
15897
15899
|
`;
|
|
15898
15900
|
const loadingThumbContent = styled__default["default"].div `
|
|
15899
15901
|
display: flex;
|
|
@@ -15923,6 +15925,22 @@ const loadingContent = styled__default["default"].div `
|
|
|
15923
15925
|
&:last-child {
|
|
15924
15926
|
width: 30%;
|
|
15925
15927
|
}
|
|
15928
|
+
|
|
15929
|
+
`;
|
|
15930
|
+
const IconPlayVideo = styled__default["default"].div `
|
|
15931
|
+
width: 133px;
|
|
15932
|
+
height: 119px;
|
|
15933
|
+
border-radius: 8px;
|
|
15934
|
+
flex-shrink: 0;
|
|
15935
|
+
background-color: rgba(0, 0, 0, 0.30);
|
|
15936
|
+
/* background-color: red; */
|
|
15937
|
+
position: relative;
|
|
15938
|
+
left: 0px;
|
|
15939
|
+
display: flex;
|
|
15940
|
+
align-items: center;
|
|
15941
|
+
justify-content: center;
|
|
15942
|
+
|
|
15943
|
+
|
|
15926
15944
|
`;
|
|
15927
15945
|
const infoThumbContent = styled__default["default"].div `
|
|
15928
15946
|
display: flex;
|
|
@@ -15967,15 +15985,21 @@ const tagThumbContent = styled__default["default"].div `
|
|
|
15967
15985
|
display: ${(props) => props?.isSelected && 'none'};
|
|
15968
15986
|
`;
|
|
15969
15987
|
const descriptionThumbContent = styled__default["default"].div `
|
|
15970
|
-
font-size:
|
|
15971
|
-
font-weight:
|
|
15988
|
+
font-size: 13px;
|
|
15989
|
+
font-weight: 700;
|
|
15990
|
+
font-style: normal;
|
|
15991
|
+
line-height: normal;
|
|
15992
|
+
font-family: PT Sans;
|
|
15972
15993
|
color: ${(props) => (props?.isSelected ? '#F9FAFB' : '#222222')};
|
|
15973
|
-
padding:
|
|
15994
|
+
padding: 10px 16px 0px 0px;
|
|
15995
|
+
width: 165px;
|
|
15974
15996
|
overflow: hidden;
|
|
15975
15997
|
text-overflow: ${(props) => (props.showText ? 'none' : 'ellipsis')};
|
|
15976
15998
|
display: ${(props) => (props.showText ? 'flex' : '-webkit-box')};
|
|
15977
15999
|
-webkit-line-clamp: ${(props) => (props.showText ? 'none' : 3)};
|
|
15978
16000
|
-webkit-box-orient: ${(props) => (props.showText ? 'none' : 'vertical')};
|
|
16001
|
+
position: relative;
|
|
16002
|
+
left: 8.83px;
|
|
15979
16003
|
`;
|
|
15980
16004
|
const viewMoreContent$1 = styled__default["default"].div `
|
|
15981
16005
|
position: absolute;
|
|
@@ -15983,6 +16007,38 @@ const viewMoreContent$1 = styled__default["default"].div `
|
|
|
15983
16007
|
bottom: 0;
|
|
15984
16008
|
margin: 0px 16px 12px 0px;
|
|
15985
16009
|
user-select: none;
|
|
16010
|
+
`;
|
|
16011
|
+
const NameCanal = styled__default["default"].p `
|
|
16012
|
+
|
|
16013
|
+
color: var(--neutrals-neutral_2, #444);
|
|
16014
|
+
font-family: PT Sans;
|
|
16015
|
+
font-size: 10px;
|
|
16016
|
+
font-style: normal;
|
|
16017
|
+
font-weight: 400;
|
|
16018
|
+
line-height: normal;
|
|
16019
|
+
position: relative;
|
|
16020
|
+
right: 10px;
|
|
16021
|
+
`;
|
|
16022
|
+
const ImgCanal = styled__default["default"].img `
|
|
16023
|
+
|
|
16024
|
+
width: 24px;
|
|
16025
|
+
height: 24px;
|
|
16026
|
+
flex-shrink: 0;
|
|
16027
|
+
border-radius: 40px;
|
|
16028
|
+
|
|
16029
|
+
`;
|
|
16030
|
+
const InfCanal = styled__default["default"].div `
|
|
16031
|
+
|
|
16032
|
+
width: 150px;
|
|
16033
|
+
height: 30px;
|
|
16034
|
+
position: absolute;
|
|
16035
|
+
display: inline-flex;
|
|
16036
|
+
align-items: center;
|
|
16037
|
+
gap: 16px;
|
|
16038
|
+
right: 17px;
|
|
16039
|
+
margin-bottom: 7px;
|
|
16040
|
+
border-top: 0.5px solid #E2E8F0;
|
|
16041
|
+
|
|
15986
16042
|
`;
|
|
15987
16043
|
const shadedThumb = styled__default["default"].div `
|
|
15988
16044
|
position: relative;
|
|
@@ -16037,7 +16093,11 @@ function ThumbListContent(props) {
|
|
|
16037
16093
|
if (props.isSelected)
|
|
16038
16094
|
setIsSelected(props?.isSelected);
|
|
16039
16095
|
}, [props.isSelected]);
|
|
16040
|
-
|
|
16096
|
+
const MAX_CHARACTERS = 150;
|
|
16097
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: props.isLoading ? (jsxRuntime.jsxs(containerThumbContent, { style: { ...props.style }, children: [jsxRuntime.jsx(loadingImageThumb, {}), jsxRuntime.jsxs(loadingThumbContent, { children: [props.title && jsxRuntime.jsx(loadingContent, { children: "a" }), jsxRuntime.jsx(loadingContent, { children: "a" }), jsxRuntime.jsx(loadingContent, { children: "a" }), jsxRuntime.jsx(loadingContent, { children: "a" }), jsxRuntime.jsx(loadingContent, { children: "a" })] })] })) : (jsxRuntime.jsxs(containerThumbContent, { style: { ...props.style }, onClick: props.onClickThumb, children: [props.imageSrc ? (tagVisualized > 0 ? (jsxRuntime.jsx(shadedThumb, { children: jsxRuntime.jsx(imageThumbContent, { style: { backgroundImage: `url(${props.imageSrc})` }, onClick: props.onClickThumb, children: jsxRuntime.jsx(ProgressAndImg, { children: jsxRuntime.jsx(ProgressBar$1, { label: "", value: props.valueProgress }) }) }) })) : (jsxRuntime.jsxs(imageThumbContent, { style: { backgroundImage: `url(${props.imageSrc})` }, onClick: props.onClickThumb, children: [jsxRuntime.jsxs(IconPlayVideo, { children: [' ', jsxRuntime.jsx(IconPlay, {}), ' '] }), jsxRuntime.jsxs(InfCanal, { children: [jsxRuntime.jsx(ImgCanal, { src: props.imageSrcCanal }), jsxRuntime.jsx(NameCanal, { children: props.nameCanal })] })] }))) : tagVisualized > 0 ? (jsxRuntime.jsx(shadedThumb, { onClick: props.onClickThumb, children: jsxRuntime.jsxs(iconsThumbAndProgress, { children: [props.typeThumbContent === 'video' ? jsxRuntime.jsx(ThumbVideo, { width: "74", height: "74" }) : null, props.typeThumbContent === 'podcast' ? (jsxRuntime.jsx(IconAndProgress, { children: jsxRuntime.jsx(ThumbPodcast, { width: "74", height: "74" }) })) : null, props.typeThumbContent === 'question' ? jsxRuntime.jsx(ThumbTexto, { width: "74", height: "74" }) : null, props.typeThumbContent === 'textual' ? jsxRuntime.jsx(ThumbTexto, { width: "74", height: "74" }) : null, jsxRuntime.jsx(ProgressIcon, { children: jsxRuntime.jsx(ProgressBar$1, { label: "", value: props.valueProgress }) })] }) })) : (jsxRuntime.jsxs(iconsThumb, { onClick: props.onClickThumb, children: [props.typeThumbContent === 'video' ? (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(ThumbVideo, { width: "74", height: "74" }) })) : null, props.typeThumbContent === 'podcast' ? (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(ThumbPodcast, { width: "74", height: "74" }) })) : null, props.typeThumbContent === 'question' ? (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(ThumbTexto, { width: "74", height: "74" }) })) : null, props.typeThumbContent === 'textual' ? (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(ThumbTexto, { width: "74", height: "74" }) })) : null] })), jsxRuntime.jsxs(infoThumbContent, { onClick: props.onClickThumb, tagVisualized: props.tagValue, isSelected: props?.isSelected, children: [props.tagValue !== 'notVisualized' ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [props.tagValue === 'vizualized' ? (jsxRuntime.jsx(tagThumbContentContainer, { children: jsxRuntime.jsx(tagThumbContent, { tagVisualized: props.tagValue, children: props.textProgressVisualized }) })) : null, props.tagValue === 'inProgress' ? (jsxRuntime.jsx(tagThumbContentContainer, { children: jsxRuntime.jsx(tagThumbContent, { tagVisualized: props.tagValue, children: props.textProgressInProgress }) })) : null] })) : null, props.title ? jsxRuntime.jsx("span", { children: props.title }) : null, jsxRuntime.jsx(descriptionThumbContent, { showText: showMore, isSelected: props?.isSelected, children: props.description.length > MAX_CHARACTERS ? (jsxRuntime.jsx(jsxRuntime.Fragment, { children: showMore ? props.description : `${props.description.slice(0, MAX_CHARACTERS)}...` })) : (props.description) })] }), jsxRuntime.jsx(viewMoreContent$1, { children: jsxRuntime.jsx(Button$4, { variant: "link", label: showMore ? props.textViewLessButton : props.textViewMoreButton, handleClick: () => setShowMore(!showMore), style: { fontSize: 12, color: props?.isSelected ? '#E5E7EB' : '#444444' } }) })] })) }));
|
|
16098
|
+
function IconPlay() {
|
|
16099
|
+
return (jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "33", height: "33", viewBox: "0 0 33 33", fill: "none", children: [jsxRuntime.jsx("g", { filter: "url(#filter0_d_1_13248)", children: jsxRuntime.jsx("path", { d: "M22.7851 17.6767C23.3898 17.273 23.3898 16.3841 22.7851 15.9803L14.8446 10.6786C14.1668 10.2261 13.2583 10.7119 13.2583 11.5269V22.1302C13.2583 22.9451 14.1668 23.4309 14.8446 22.9784L22.7851 17.6767Z", fill: "white" }) }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsxs("filter", { id: "filter0_d_1_13248", x: "0", y: "0", width: "32.6364", height: "32.6364", filterUnits: "userSpaceOnUse", "color-interpolation-filters": "sRGB", children: [jsxRuntime.jsx("feFlood", { "flood-opacity": "0", result: "BackgroundImageFix" }), jsxRuntime.jsx("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), jsxRuntime.jsx("feMorphology", { radius: "20.3983", operator: "erode", in: "SourceAlpha", result: "effect1_dropShadow_1_13248" }), jsxRuntime.jsx("feOffset", { dy: "3.05975" }), jsxRuntime.jsx("feGaussianBlur", { stdDeviation: "2.54979" }), jsxRuntime.jsx("feColorMatrix", { type: "matrix", values: "0 0 0 0 1 0 0 0 0 0.301961 0 0 0 0 0.0509804 0 0 0 0.4 0" }), jsxRuntime.jsx("feBlend", { mode: "multiply", in2: "BackgroundImageFix", result: "effect1_dropShadow_1_13248" }), jsxRuntime.jsx("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_1_13248", result: "shape" })] }) })] }) }));
|
|
16100
|
+
}
|
|
16041
16101
|
}
|
|
16042
16102
|
|
|
16043
16103
|
const containerList = styled__default["default"].div `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multiselectStyles.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"multiselectStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/dropdown-Multiselect/styles/multiselectStyles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe,oEAiB3B,CAAA;AAED,eAAO,MAAM,YAAY,oEAgBxB,CAAA;AAED,eAAO,MAAM,YAAY,oEA0CxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAStB,CAAA;AAED,eAAO,MAAM,SAAS,oEAuBrB,CAAA;AAED,eAAO,MAAM,YAAY,oEAmBxB,CAAA;AAED,eAAO,MAAM,cAAc,oEAc1B,CAAA;AAED,eAAO,MAAM,WAAW,oEASvB,CAAA;AAED,eAAO,MAAM,YAAY,oEAkBxB,CAAA;AAED,eAAO,MAAM,UAAU,oEAMtB,CAAA;AAED,eAAO,MAAM,SAAS,oEAMrB,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAItB,CAAA"}
|
package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttonControlStyles.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"buttonControlStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAGD,eAAO,MAAM,oBAAoB,gFAmChC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/ButtonControl/index.tsx"],"names":[],"mappings":";AAMA,wBAAgB,cAAc,CAAC,EACvB,OAAO,EACP,gBAAgB,EAChB,SAAS,EACT,SAAS,EACT,WAAW,EACX,UAAU,EACV,MAAM,EACT;;;;;;;;CAAA,eAuBF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useLongPress.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"useLongPress.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/ButtonControl/useLongPress.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAAC,QAAQ,aAAW,EAAE,EAAE,SAAO;;;;;;EAsB1D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StylesSelect.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"StylesSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/select/styles/StylesSelect.tsx"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,eAAO,MAAM,iBAAiB,6EAa7B,CAAA;AACD,eAAO,MAAM,YAAY,oEASxB,CAAA;AACD,eAAO,MAAM,cAAc,6EA4B1B,CAAA;AACD,eAAO,MAAM,qBAAqB,oEAAkB,CAAA;AAEpD,eAAO,MAAM,YAAY,mEAgBxB,CAAA;AACD,eAAO,MAAM,kBAAkB;UAAyB,OAAO;SAa9D,CAAA;AACD,eAAO,MAAM,cAAc,kEAO1B,CAAA"}
|
package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAC,yBAAyB,EAAC,MAAM,4BAA4B,CAAC;AAGrE,eAAO,MAAM,kBAAkB,mGAC5B,yBAAyB,gBAW3B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,UAAU,oMAapB,WAAW,gBAkGb,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inputReply.styles.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"inputReply.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,SAAS,oEAIrB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/learningCycleCard/components/menu/index.tsx"],"names":[],"mappings":";AAUA,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE;;;CAAA,eAiFnD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menuStyle.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"menuStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/learningCycleCard/components/menu/menuStyle.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,oEAuBxB,CAAA"}
|
|
@@ -15,6 +15,8 @@ interface IThumbListContent {
|
|
|
15
15
|
valueProgress?: number;
|
|
16
16
|
tagValue: 'vizualized' | 'inProgress' | 'notVisualized';
|
|
17
17
|
isSelected?: boolean;
|
|
18
|
+
nameCanal?: string;
|
|
19
|
+
imageSrcCanal?: string;
|
|
18
20
|
}
|
|
19
21
|
export default function ThumbListContent(props: IThumbListContent): JSX.Element;
|
|
20
22
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/index.tsx"],"names":[],"mappings":";AAQA,KAAK,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAA;AAE7D,UAAU,iBAAiB;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,eAAe,CAAA;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/index.tsx"],"names":[],"mappings":";AAQA,KAAK,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAA;AAE7D,UAAU,iBAAiB;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,eAAe,CAAA;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,KAAK,EAAE,iBAAiB,eA0LhE"}
|
|
@@ -10,11 +10,15 @@ export declare const iconsThumb: import("styled-components").StyledComponent<"di
|
|
|
10
10
|
export declare const imageThumbContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
11
|
export declare const loadingThumbContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
12
|
export declare const loadingContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
|
+
export declare const IconPlayVideo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
14
|
export declare const infoThumbContent: import("styled-components").StyledComponent<"div", any, content, never>;
|
|
14
15
|
export declare const tagThumbContentContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
15
16
|
export declare const tagThumbContent: import("styled-components").StyledComponent<"div", any, content, never>;
|
|
16
17
|
export declare const descriptionThumbContent: import("styled-components").StyledComponent<"div", any, content, never>;
|
|
17
18
|
export declare const viewMoreContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
19
|
+
export declare const NameCanal: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
20
|
+
export declare const ImgCanal: import("styled-components").StyledComponent<"img", any, {}, never>;
|
|
21
|
+
export declare const InfCanal: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
18
22
|
export declare const shadedThumb: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
19
23
|
export declare const ProgressAndImg: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
20
24
|
export declare const ProgressIcon: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thumbListContentStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/thumbListContentStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,qBAAqB,oEAQjC,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAU7B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAOjC,CAAA;AAED,eAAO,MAAM,UAAU,oEAQtB,CAAA;AAED,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"thumbListContentStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/thumbListContentStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,qBAAqB,oEAQjC,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAU7B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAOjC,CAAA;AAED,eAAO,MAAM,UAAU,oEAQtB,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAa7B,CAAA;AAED,eAAO,MAAM,mBAAmB,oEAO/B,CAAA;AAED,eAAO,MAAM,cAAc,oEAqB1B,CAAA;AAGD,eAAO,MAAM,aAAa,oEAczB,CAAA;AAGD,eAAO,MAAM,gBAAgB,yEAoB5B,CAAA;AAED,eAAO,MAAM,wBAAwB,oEAKpC,CAAA;AACD,eAAO,MAAM,eAAe,yEAc3B,CAAA;AAED,eAAO,MAAM,uBAAuB,yEAgBnC,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA;AACD,eAAO,MAAM,SAAS,kEAUrB,CAAA;AAED,eAAO,MAAM,QAAQ,oEAOpB,CAAA;AAED,eAAO,MAAM,QAAQ,oEAYpB,CAAA;AAGD,eAAO,MAAM,WAAW,oEAgBvB,CAAA;AAED,eAAO,MAAM,cAAc,oEAK1B,CAAA;AAED,eAAO,MAAM,YAAY,oEAUxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errorIcon.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"errorIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/errorIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,SAAS,gBAUhC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"successIcon.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"successIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/successIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBASnC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"warningIcon.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"warningIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/warningIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBAWnC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/global-menu/components/customMenu/index.tsx"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,UAAU,SAAK"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalMenuStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/global-menu/globalMenuStyles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,UAAU,cAAc;IACtB,OAAO,CAAC,EAAE,WAAW,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,aAAa,gFAYzB,CAAA;AAED,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"globalMenuStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/global-menu/globalMenuStyles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,UAAU,cAAc;IACtB,OAAO,CAAC,EAAE,WAAW,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,aAAa,gFAYzB,CAAA;AAED,eAAO,MAAM,WAAW,oEAKvB,CAAA;AACD,eAAO,MAAM,eAAe,oEAO3B,CAAA;AACD,eAAO,MAAM,WAAW,oEAOvB,CAAA;AACD,eAAO,MAAM,WAAW,oEAKvB,CAAA;AAED,eAAO,MAAM,gBAAgB,oEAO5B,CAAA;AAED,eAAO,MAAM,uBAAuB,oEAWnC,CAAA;AAED,eAAO,MAAM,2BAA2B,kEAMvC,CAAA;AAGD,eAAO,MAAM,6BAA6B,oEAWzC,CAAA;AAED,eAAO,MAAM,gBAAgB,gFAgB5B,CAAA;AAED,eAAO,MAAM,UAAU;;SAWtB,CAAA;AAED,eAAO,MAAM,QAAQ;;SAWpB,CAAA;AAED,eAAO,MAAM,YAAY,oEAqBxB,CAAA;AAED,eAAO,MAAM,cAAc,oEAqB1B,CAAA;AAED,eAAO,MAAM,gBAAgB,oEAU5B,CAAA;AAED,eAAO,MAAM,WAAW,oEAOvB,CAAA;AAED,eAAO,MAAM,eAAe,uEAI3B,CAAA;AAED,eAAO,MAAM,IAAI,oEAWhB,CAAA;AAED,eAAO,MAAM,QAAQ,kEASpB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/global-menu/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAIhC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAuB1C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,OAAO,EACP,IAAI,EACJ,UAAU,EACV,IAAI,EACJ,MAAM,EACN,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,KAAK,EACL,gBAAgB,EAChB,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,cAAc,EACd,sBAAsB,EACtB,WAAW,EACX,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,QAAQ,EACR,WAAW,EACX,WAAkB,EACnB,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/global-menu/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAIhC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAuB1C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,OAAO,EACP,IAAI,EACJ,UAAU,EACV,IAAI,EACJ,MAAM,EACN,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,KAAK,EACL,gBAAgB,EAChB,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,cAAc,EACd,sBAAsB,EACtB,WAAW,EACX,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,QAAQ,EACR,WAAW,EACX,WAAkB,EACnB,EAAE,WAAW,eAqxBb;AAED,wBAAgB,UAAU,CAAC,EACzB,KAAK,EACL,SAAS,EACT,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,cAAc,EACd,UAAU,EACX;;;;;;;;;;;;;;CAAA,eAoLA;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,SAAS,EACT,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,cAAc,EACd,UAAU,EACX;;;;;;;;;;;;;;CAAA,eA4GA;AAED,wBAAgB,QAAQ,CAAC,EACvB,KAAK,EACL,SAAS,EACT,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,cAAc,EACd,UAAU,EACX;;;;;;;;;;;;;;CAAA,eAqKA;AAED,wBAAgB,iBAAiB,gBAiBhC;AAED,wBAAgB,mBAAmB,gBAQlC;AAED,wBAAgB,QAAQ,gBAgCvB"}
|
|
@@ -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,0EAkBrB,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"}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|