frst-components 0.21.86 → 0.21.88
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 +77 -15
- package/dist/src/components/FI/ThreadComments/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/threadComments.styles.d.ts +0 -1
- package/dist/src/components/FI/ThreadComments/threadComments.styles.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/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/mentionsStyle.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
|
@@ -3301,7 +3301,7 @@ const useInputHook = ({ limit, placeholder, onSendMentions, onContentFormat, onC
|
|
|
3301
3301
|
const [showMention, setShowMention] = React.useState(false);
|
|
3302
3302
|
const [inputSearch, setInputSearch] = React.useState('');
|
|
3303
3303
|
const divInputRef = React.useRef(null);
|
|
3304
|
-
const mentionTopPosition = `${(divInputRef.current?.clientHeight ?? 15) +
|
|
3304
|
+
const mentionTopPosition = `${(divInputRef.current?.clientHeight ?? 15) + 20}px`;
|
|
3305
3305
|
const [textLength, setTextLength] = React.useState(0);
|
|
3306
3306
|
const [isPlaceholder, setPlaceholder] = React.useState(false);
|
|
3307
3307
|
const [styleLimitExceeded, setStyleLimitExceeded] = React.useState(false);
|
|
@@ -3561,6 +3561,7 @@ const Container$j = styled__default["default"].div `
|
|
|
3561
3561
|
overflow-y: auto;
|
|
3562
3562
|
z-index: 100;
|
|
3563
3563
|
border-radius: 8px;
|
|
3564
|
+
box-shadow: 0px 8px 10px 0 #BDBDBD;
|
|
3564
3565
|
|
|
3565
3566
|
&::-webkit-scrollbar {
|
|
3566
3567
|
width: 5px;
|
|
@@ -4642,10 +4643,6 @@ const CommentarysContainer = styled__default["default"].div `
|
|
|
4642
4643
|
`;
|
|
4643
4644
|
styled__default["default"].div `
|
|
4644
4645
|
display:flex;
|
|
4645
|
-
margin-bottom:16px;
|
|
4646
|
-
`;
|
|
4647
|
-
styled__default["default"].div `
|
|
4648
|
-
display:flex;
|
|
4649
4646
|
flex-direction:column;
|
|
4650
4647
|
margin-left:0px
|
|
4651
4648
|
`;
|
|
@@ -4658,8 +4655,8 @@ font-weight: 400;
|
|
|
4658
4655
|
line-height: 110%;
|
|
4659
4656
|
position: relative;
|
|
4660
4657
|
left: 59px;
|
|
4661
|
-
margin-bottom:
|
|
4662
|
-
margin-top:
|
|
4658
|
+
margin-bottom:4px;
|
|
4659
|
+
margin-top: 6px;
|
|
4663
4660
|
|
|
4664
4661
|
span{
|
|
4665
4662
|
cursor:pointer;
|
|
@@ -4671,7 +4668,7 @@ margin-left:60px;
|
|
|
4671
4668
|
`;
|
|
4672
4669
|
|
|
4673
4670
|
const CommentaryBoxReply = ({ commentData, showMoreButtonText, showLessButtonText, answerButtonText, onClickAnswerButton }) => {
|
|
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: '
|
|
4671
|
+
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: '0px' }, commentTextWithMention: commentData.mentionText }));
|
|
4675
4672
|
};
|
|
4676
4673
|
|
|
4677
4674
|
const container = styled__default["default"].div `
|
|
@@ -4812,7 +4809,7 @@ const InputReply = ({ placeHolderText, getSearchUsers, onClickPublishButton, par
|
|
|
4812
4809
|
const response = await getSearchUsers(value);
|
|
4813
4810
|
setUsers(response?.data?.results || response);
|
|
4814
4811
|
};
|
|
4815
|
-
return (jsxRuntime.jsxs(Container$g, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { src: imgProfile, size: "32px", style: { marginTop: '
|
|
4812
|
+
return (jsxRuntime.jsxs(Container$g, { style: { ...styles }, children: [jsxRuntime.jsx(Avatar, { src: imgProfile, size: "32px", style: { marginTop: '16px', 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
4813
|
handleSearchUsers(e);
|
|
4817
4814
|
}, value: comment, placeholder: placeHolderText, limit: limitInput, showCharacterCounter: true, onContentUnformat: (unformattedValue) => setCommentData(unformattedValue), onContentFormat: (formattedValue) => setCaptureFormattedValue(formattedValue), onSendMentions: (mentions) => setCaptureMentions(mentions), users: users,
|
|
4818
4815
|
//replyMentionedUser={!userMentionedOnReplied && user}
|
|
@@ -10078,6 +10075,8 @@ const MenuContainer = styled__default["default"].div `
|
|
|
10078
10075
|
const WrapperLogo = styled__default["default"].div `
|
|
10079
10076
|
margin-right: 65px;
|
|
10080
10077
|
cursor: pointer;
|
|
10078
|
+
position: relative;
|
|
10079
|
+
top: 3px;
|
|
10081
10080
|
`;
|
|
10082
10081
|
const HamburgerButton = styled__default["default"].div `
|
|
10083
10082
|
cursor: pointer;
|
|
@@ -11272,8 +11271,8 @@ function GlobalMenu({ variant, menu, customMenu, user, search, notification, lan
|
|
|
11272
11271
|
}, children: SubMenu.map((item, index) => {
|
|
11273
11272
|
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
11273
|
}) }))] }), 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',
|
|
11274
|
+
paddingRight: windowSize[0] > 1400 ? '124px' : windowSize[0] > 1199 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11275
|
+
paddingLeft: windowSize[0] > 1400 ? '225px' : windowSize[0] > 1199 ? '124px' : windowSize[0] < 500 ? '10px' : '35px',
|
|
11277
11276
|
...style
|
|
11278
11277
|
}, 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
11278
|
width: isMobileVersion ? '190px' : '332px'
|
|
@@ -15889,6 +15888,11 @@ const imageThumbContent = styled__default["default"].div `
|
|
|
15889
15888
|
display: flex;
|
|
15890
15889
|
flex-direction: column;
|
|
15891
15890
|
justify-content: flex-end;
|
|
15891
|
+
border-radius: 6.733px;
|
|
15892
|
+
align-items: center;
|
|
15893
|
+
margin-left: -1px;
|
|
15894
|
+
background: rgba(0, 0, 0, 0.30);
|
|
15895
|
+
|
|
15892
15896
|
`;
|
|
15893
15897
|
const loadingThumbContent = styled__default["default"].div `
|
|
15894
15898
|
display: flex;
|
|
@@ -15918,6 +15922,22 @@ const loadingContent = styled__default["default"].div `
|
|
|
15918
15922
|
&:last-child {
|
|
15919
15923
|
width: 30%;
|
|
15920
15924
|
}
|
|
15925
|
+
|
|
15926
|
+
`;
|
|
15927
|
+
const IconPlayVideo = styled__default["default"].div `
|
|
15928
|
+
width: 133px;
|
|
15929
|
+
height: 119px;
|
|
15930
|
+
border-radius: 8px;
|
|
15931
|
+
flex-shrink: 0;
|
|
15932
|
+
background-color: rgba(0, 0, 0, 0.30);
|
|
15933
|
+
/* background-color: red; */
|
|
15934
|
+
position: relative;
|
|
15935
|
+
left: 0px;
|
|
15936
|
+
display: flex;
|
|
15937
|
+
align-items: center;
|
|
15938
|
+
justify-content: center;
|
|
15939
|
+
|
|
15940
|
+
|
|
15921
15941
|
`;
|
|
15922
15942
|
const infoThumbContent = styled__default["default"].div `
|
|
15923
15943
|
display: flex;
|
|
@@ -15962,15 +15982,21 @@ const tagThumbContent = styled__default["default"].div `
|
|
|
15962
15982
|
display: ${(props) => props?.isSelected && 'none'};
|
|
15963
15983
|
`;
|
|
15964
15984
|
const descriptionThumbContent = styled__default["default"].div `
|
|
15965
|
-
font-size:
|
|
15966
|
-
font-weight:
|
|
15985
|
+
font-size: 13px;
|
|
15986
|
+
font-weight: 700;
|
|
15987
|
+
font-style: normal;
|
|
15988
|
+
line-height: normal;
|
|
15989
|
+
font-family: PT Sans;
|
|
15967
15990
|
color: ${(props) => (props?.isSelected ? '#F9FAFB' : '#222222')};
|
|
15968
|
-
padding:
|
|
15991
|
+
padding: 10px 16px 0px 0px;
|
|
15992
|
+
width: 165px;
|
|
15969
15993
|
overflow: hidden;
|
|
15970
15994
|
text-overflow: ${(props) => (props.showText ? 'none' : 'ellipsis')};
|
|
15971
15995
|
display: ${(props) => (props.showText ? 'flex' : '-webkit-box')};
|
|
15972
15996
|
-webkit-line-clamp: ${(props) => (props.showText ? 'none' : 3)};
|
|
15973
15997
|
-webkit-box-orient: ${(props) => (props.showText ? 'none' : 'vertical')};
|
|
15998
|
+
position: relative;
|
|
15999
|
+
left: 8.83px;
|
|
15974
16000
|
`;
|
|
15975
16001
|
const viewMoreContent$1 = styled__default["default"].div `
|
|
15976
16002
|
position: absolute;
|
|
@@ -15978,6 +16004,38 @@ const viewMoreContent$1 = styled__default["default"].div `
|
|
|
15978
16004
|
bottom: 0;
|
|
15979
16005
|
margin: 0px 16px 12px 0px;
|
|
15980
16006
|
user-select: none;
|
|
16007
|
+
`;
|
|
16008
|
+
const NameCanal = styled__default["default"].p `
|
|
16009
|
+
|
|
16010
|
+
color: var(--neutrals-neutral_2, #444);
|
|
16011
|
+
font-family: PT Sans;
|
|
16012
|
+
font-size: 10px;
|
|
16013
|
+
font-style: normal;
|
|
16014
|
+
font-weight: 400;
|
|
16015
|
+
line-height: normal;
|
|
16016
|
+
position: relative;
|
|
16017
|
+
right: 10px;
|
|
16018
|
+
`;
|
|
16019
|
+
const ImgCanal = styled__default["default"].img `
|
|
16020
|
+
|
|
16021
|
+
width: 24px;
|
|
16022
|
+
height: 24px;
|
|
16023
|
+
flex-shrink: 0;
|
|
16024
|
+
border-radius: 40px;
|
|
16025
|
+
|
|
16026
|
+
`;
|
|
16027
|
+
const InfCanal = styled__default["default"].div `
|
|
16028
|
+
|
|
16029
|
+
width: 150px;
|
|
16030
|
+
height: 30px;
|
|
16031
|
+
position: absolute;
|
|
16032
|
+
display: inline-flex;
|
|
16033
|
+
align-items: center;
|
|
16034
|
+
gap: 16px;
|
|
16035
|
+
right: 17px;
|
|
16036
|
+
margin-bottom: 7px;
|
|
16037
|
+
border-top: 0.5px solid #E2E8F0;
|
|
16038
|
+
|
|
15981
16039
|
`;
|
|
15982
16040
|
const shadedThumb = styled__default["default"].div `
|
|
15983
16041
|
position: relative;
|
|
@@ -16032,7 +16090,11 @@ function ThumbListContent(props) {
|
|
|
16032
16090
|
if (props.isSelected)
|
|
16033
16091
|
setIsSelected(props?.isSelected);
|
|
16034
16092
|
}, [props.isSelected]);
|
|
16035
|
-
|
|
16093
|
+
const MAX_CHARACTERS = 150;
|
|
16094
|
+
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' } }) })] })) }));
|
|
16095
|
+
function IconPlay() {
|
|
16096
|
+
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" })] }) })] }) }));
|
|
16097
|
+
}
|
|
16036
16098
|
}
|
|
16037
16099
|
|
|
16038
16100
|
const containerList = styled__default["default"].div `
|
|
@@ -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,gBAuHjB,CAAA"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
2
|
export declare const CommentarysContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
-
export declare const CommentaryBoxContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
3
|
export declare const InputContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
4
|
export declare const ViewReplysButtonContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
5
|
export declare const RepplysContainer: import("styled-components").StyledComponent<"div", any, {
|
|
@@ -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,oEAIhC,CAAA;AAED,eAAO,MAAM,
|
|
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,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAerC,CAAA;AAED,eAAO,MAAM,gBAAgB;YAAwB,MAAM;SAG1D,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":"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":"mentionsStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/mentionsStyle.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;UAAsB,OAAO;SAAO,MAAM;YAAU,MAAM;aAAW,MAAM;
|
|
1
|
+
{"version":3,"file":"mentionsStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/mentionsStyle.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;UAAsB,OAAO;SAAO,MAAM;YAAU,MAAM;aAAW,MAAM;SA8BhG,CAAA;AAED,eAAO,MAAM,YAAY,sEAAiB,CAAA;AAE1C,eAAO,MAAM,WAAW,oEAKvB,CAAA;AAED,eAAO,MAAM,WAAW;aAAyB,OAAO;SAoBvD,CAAA;AAED,eAAO,MAAM,gBAAgB,oEAI5B,CAAA;AAED,eAAO,MAAM,aAAa,oEAIzB,CAAA;AAED,eAAO,MAAM,oBAAoB,oEAQhC,CAAA;AAED,eAAO,MAAM,eAAe,qEAI3B,CAAA;AAED,eAAO,MAAM,eAAe,oEAK3B,CAAA;AAED,eAAO,MAAM,mBAAmB,qEAO/B,CAAA;AACD,eAAO,MAAM,MAAM,oEAMlB,CAAA"}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|