frst-components 0.21.9 → 0.21.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -7954,171 +7954,183 @@ function ContentSwitcher({ label, handleClick, style, sizeIcon, startIcon, start
|
|
|
7954
7954
|
}
|
|
7955
7955
|
|
|
7956
7956
|
const Container$a = styled__default["default"].div `
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7957
|
+
width: 270px;
|
|
7958
|
+
height: fit-content;
|
|
7959
|
+
background: linear-gradient(180deg, #ee4c15 0%, #cc362d 100%);
|
|
7960
|
+
display: flex;
|
|
7961
|
+
flex-direction: column;
|
|
7962
|
+
justify-content: center;
|
|
7963
|
+
align-items: center;
|
|
7964
|
+
position: relative;
|
|
7965
|
+
box-sizing: border-box;
|
|
7966
|
+
padding-top: 16px;
|
|
7967
|
+
|
|
7968
|
+
> .frame {
|
|
7969
|
+
width: 100%;
|
|
7970
|
+
height: fit-content;
|
|
7960
7971
|
display: flex;
|
|
7961
7972
|
flex-direction: column;
|
|
7962
|
-
|
|
7963
|
-
align-items: center;
|
|
7973
|
+
align-items: flex-start;
|
|
7964
7974
|
position: relative;
|
|
7965
7975
|
box-sizing: border-box;
|
|
7966
|
-
|
|
7976
|
+
background: #f18624;
|
|
7977
|
+
padding: 8px;
|
|
7978
|
+
gap: 7.75px;
|
|
7979
|
+
|
|
7980
|
+
padding-bottom: 16px;
|
|
7981
|
+
}
|
|
7967
7982
|
`;
|
|
7968
7983
|
const Image$3 = styled__default["default"].img `
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7984
|
+
height: 189px;
|
|
7985
|
+
width: 100%;
|
|
7986
|
+
border-radius: 8px;
|
|
7987
|
+
object-position: center;
|
|
7988
|
+
object-fit: cover;
|
|
7974
7989
|
`;
|
|
7975
7990
|
const Content$1 = styled__default["default"].div `
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
margin-top: 20px;
|
|
7991
|
+
display: flex;
|
|
7992
|
+
flex-direction: row;
|
|
7993
|
+
align-items: center;
|
|
7994
|
+
justify-content: flex-start;
|
|
7995
|
+
position: relative;
|
|
7996
|
+
width: 100%;
|
|
7983
7997
|
`;
|
|
7984
|
-
const Typography$3 = styled__default["default"].p `
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
8000
|
-
|
|
7998
|
+
const Typography$3 = styled__default["default"].p `
|
|
7999
|
+
font-family: 'Work Sans';
|
|
8000
|
+
font-style: normal;
|
|
8001
|
+
font-weight: 700;
|
|
8002
|
+
font-size: 20px;
|
|
8003
|
+
line-height: 23px;
|
|
8004
|
+
display: flex;
|
|
8005
|
+
align-items: center;
|
|
8006
|
+
margin-right: 20px;
|
|
8007
|
+
color: ${({ theme }) => theme.colors.shadeWhite};
|
|
8008
|
+
word-wrap: break-word;
|
|
8009
|
+
overflow: hidden;
|
|
8010
|
+
display: -webkit-box;
|
|
8011
|
+
-webkit-box-orient: vertical;
|
|
8012
|
+
-webkit-line-clamp: 4; /* start showing ellipsis when 3rd line is reached */
|
|
8013
|
+
white-space: pre-wrap;
|
|
8014
|
+
text-overflow: ellipsis;
|
|
8001
8015
|
`;
|
|
8002
8016
|
const Select$1 = styled__default["default"].div `
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8017
|
+
background: none;
|
|
8018
|
+
width: 20px;
|
|
8019
|
+
height: 20px;
|
|
8020
|
+
position: absolute;
|
|
8021
|
+
right: 0;
|
|
8022
|
+
top: 0;
|
|
8023
|
+
cursor: pointer;
|
|
8010
8024
|
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8025
|
+
&:hover {
|
|
8026
|
+
opacity: 0.5;
|
|
8027
|
+
}
|
|
8014
8028
|
`;
|
|
8015
8029
|
const ContainerCard$1 = styled__default["default"].div `
|
|
8016
|
-
|
|
8017
|
-
|
|
8018
|
-
|
|
8019
|
-
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
|
|
8030
|
+
width: 270px;
|
|
8031
|
+
height: 76px;
|
|
8032
|
+
background-color: ${({ theme }) => theme.colors.shadeWhite};
|
|
8033
|
+
display: flex;
|
|
8034
|
+
align-items: center;
|
|
8035
|
+
padding: 8px;
|
|
8036
|
+
position: relative;
|
|
8037
|
+
overflow: hidden;
|
|
8038
|
+
border-bottom: 1px solid ${({ theme }) => theme.colors.borderPrimary};
|
|
8025
8039
|
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8040
|
+
&:hover {
|
|
8041
|
+
background-color: ${({ theme }) => theme.colors.neutralsGrey9};
|
|
8042
|
+
}
|
|
8029
8043
|
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8044
|
+
&:active {
|
|
8045
|
+
background-color: ${({ theme }) => theme.colors.neutralsGrey6};
|
|
8046
|
+
}
|
|
8047
|
+
|
|
8048
|
+
&:hover .trash {
|
|
8049
|
+
right: 15px;
|
|
8050
|
+
}
|
|
8037
8051
|
`;
|
|
8038
8052
|
const Thumbnails$2 = styled__default["default"].div `
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
|
|
8045
|
-
|
|
8053
|
+
width: 17.29px;
|
|
8054
|
+
height: 51px;
|
|
8055
|
+
margin-left: -11px;
|
|
8056
|
+
display: flex;
|
|
8057
|
+
flex-direction: column;
|
|
8058
|
+
justify-content: center;
|
|
8059
|
+
align-items: center;
|
|
8046
8060
|
`;
|
|
8047
8061
|
const Title$2 = styled__default["default"].div `
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
|
|
8062
|
+
width: 166px;
|
|
8063
|
+
margin-left: 12px;
|
|
8064
|
+
word-wrap: break-word;
|
|
8065
|
+
overflow: hidden;
|
|
8066
|
+
display: -webkit-box;
|
|
8067
|
+
-webkit-box-orient: vertical;
|
|
8068
|
+
-webkit-line-clamp: 2; /* start showing ellipsis when 3rd line is reached */
|
|
8069
|
+
white-space: pre-wrap;
|
|
8070
|
+
text-overflow: ellipsis;
|
|
8057
8071
|
`;
|
|
8058
8072
|
const IconTrash = styled__default["default"].div `
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8073
|
+
cursor: pointer;
|
|
8074
|
+
height: 100%;
|
|
8075
|
+
display: flex;
|
|
8076
|
+
align-items: center;
|
|
8077
|
+
right: -15px;
|
|
8078
|
+
position: absolute;
|
|
8079
|
+
transition: all 0.5s linear;
|
|
8067
8080
|
`;
|
|
8068
8081
|
// ##############TRILHA##############
|
|
8069
8082
|
const ContainerTrilha = styled__default["default"].div `
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8083
|
+
width: 270px;
|
|
8084
|
+
height: 499px;
|
|
8085
|
+
background-color: ${({ theme }) => theme.colors.primary2};
|
|
8086
|
+
display: flex;
|
|
8087
|
+
flex-direction: column;
|
|
8088
|
+
justify-content: center;
|
|
8089
|
+
align-items: center;
|
|
8090
|
+
position: relative;
|
|
8079
8091
|
`;
|
|
8080
8092
|
const ContainerChoice = styled__default["default"].div `
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8093
|
+
width: 232px;
|
|
8094
|
+
height: 75px;
|
|
8095
|
+
position: absolute;
|
|
8096
|
+
top: 0;
|
|
8097
|
+
margin: 20px;
|
|
8086
8098
|
`;
|
|
8087
|
-
const TypographyChoice = styled__default["default"].p `
|
|
8088
|
-
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8099
|
+
const TypographyChoice = styled__default["default"].p `
|
|
8100
|
+
font-family: 'PT Sans';
|
|
8101
|
+
font-style: normal;
|
|
8102
|
+
font-weight: 400;
|
|
8103
|
+
font-size: 16px;
|
|
8104
|
+
line-height: 21px;
|
|
8105
|
+
color: #ffffff;
|
|
8106
|
+
padding-bottom: 8px;
|
|
8107
|
+
white-space: nowrap;
|
|
8096
8108
|
`;
|
|
8097
|
-
const SelectChoice = styled__default["default"].select `
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8109
|
+
const SelectChoice = styled__default["default"].select `
|
|
8110
|
+
width: 232px;
|
|
8111
|
+
height: 48px;
|
|
8112
|
+
border-radius: 8px;
|
|
8113
|
+
border: 1px solid #e0e0e0;
|
|
8114
|
+
color: #9c9c9c;
|
|
8115
|
+
padding-left: 10px;
|
|
8104
8116
|
`;
|
|
8105
8117
|
const ImageChoice = styled__default["default"].img `
|
|
8106
|
-
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
8118
|
+
width: 232px;
|
|
8119
|
+
height: 310px;
|
|
8120
|
+
margin-bottom: 70px;
|
|
8121
|
+
border-radius: 8px;
|
|
8122
|
+
position: absolute;
|
|
8123
|
+
object-fit: cover;
|
|
8124
|
+
bottom: 0;
|
|
8113
8125
|
`;
|
|
8114
8126
|
const ContentChoice = styled__default["default"].div `
|
|
8115
|
-
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8127
|
+
display: flex;
|
|
8128
|
+
flex-direction: row;
|
|
8129
|
+
position: absolute;
|
|
8130
|
+
margin-top: 425px;
|
|
8119
8131
|
`;
|
|
8120
8132
|
const OptionChoice = styled__default["default"].option `
|
|
8121
|
-
|
|
8133
|
+
color: #9c9c9c;
|
|
8122
8134
|
`;
|
|
8123
8135
|
|
|
8124
8136
|
///-----------------------------------------
|
|
@@ -8198,10 +8210,20 @@ function ContentThumbnails({ label, contentList, variant, src, disabled, icon, o
|
|
|
8198
8210
|
};
|
|
8199
8211
|
function Exibir() {
|
|
8200
8212
|
return (jsxRuntime.jsx(dnd.DragDropContext, { onDragEnd: onDragEnd, children: jsxRuntime.jsx(dnd.Droppable, { droppableId: "contentListData", children: (provided) => (jsxRuntime.jsx("div", { style: { backgroundColor: '#D1D5DB', height: contentListData.length > 0 ? 'auto' : '100vh', width: 270 }, ref: provided.innerRef, children: contentListData?.map((item, index) => {
|
|
8201
|
-
return (jsxRuntime.jsx(dnd.Draggable, { draggableId: item.title, index: index, children: (provided) => (jsxRuntime.jsxs(ContainerCard$1, { ref: provided.innerRef, ...provided.draggableProps, children: [jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs("div", { onClick: () => {
|
|
8213
|
+
return (jsxRuntime.jsx(dnd.Draggable, { draggableId: item.title, index: index, children: (provided) => (jsxRuntime.jsxs(ContainerCard$1, { ref: provided.innerRef, ...provided.draggableProps, children: [jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs(Thumbnails$2, { ref: provided.innerRef, ...provided.draggableProps, ...provided.dragHandleProps, children: [jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {}), jsxRuntime.jsx(VectorEllipse$1, {})] }), jsxRuntime.jsxs("div", { onClick: () => {
|
|
8214
|
+
handleClick(item);
|
|
8215
|
+
}, style: {
|
|
8216
|
+
display: 'flex',
|
|
8217
|
+
flexDirection: 'row',
|
|
8218
|
+
alignItems: 'center',
|
|
8219
|
+
height: '100%',
|
|
8220
|
+
cursor: 'pointer'
|
|
8221
|
+
}, children: [iconList[item.type], jsxRuntime.jsx(Title$2, { children: item.title })] }), jsxRuntime.jsx(IconTrash, { className: "trash", onClick: () => {
|
|
8222
|
+
removeContentList(item);
|
|
8223
|
+
}, children: jsxRuntime.jsx(TrashIcon, { fill: '#C00F00' }) })] })) }, index));
|
|
8202
8224
|
}) })) }) }));
|
|
8203
8225
|
}
|
|
8204
|
-
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: variant === 'individualCourse' ? (jsxRuntime.jsxs("div", { children: [jsxRuntime.
|
|
8226
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: variant === 'individualCourse' ? (jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(Container$a, { className: (variant = 'individualCourse'), children: jsxRuntime.jsxs("div", { className: "frame", children: [jsxRuntime.jsx(Image$3, { src: src || defaultImg }), jsxRuntime.jsxs(Content$1, { children: [jsxRuntime.jsx(Typography$3, { children: title }), jsxRuntime.jsx(Select$1, { onClick: change, children: up ? jsxRuntime.jsx(VectorUp$1, {}) : jsxRuntime.jsx(VectorDown$1, {}) })] })] }) }), jsxRuntime.jsx("div", { children: up ? jsxRuntime.jsx(Exibir, {}) : null })] })) : variant === 'trilha' ? (jsxRuntime.jsxs("div", { children: [jsxRuntime.jsxs(ContainerTrilha, { className: (variant = 'trilha'), children: [jsxRuntime.jsxs(ContainerChoice, { children: [jsxRuntime.jsx(TypographyChoice, { children: "Escolha o curso que deseja editar" }), jsxRuntime.jsx(SelectChoice, { placeholder: title, value: title, onChange: onChange, children: jsxRuntime.jsx(OptionChoice, { value: title, children: title }) })] }), jsxRuntime.jsx(ImageChoice, { src: src || defaultImg }), jsxRuntime.jsxs(ContentChoice, { children: [jsxRuntime.jsx(Typography$3, { children: title }), jsxRuntime.jsx(Select$1, { onClick: change, children: up ? jsxRuntime.jsx(VectorUp$1, {}) : jsxRuntime.jsx(VectorDown$1, {}) })] })] }), up ? (jsxRuntime.jsx("div", { style: { backgroundColor: '#D1D5DB', width: 270 }, children: jsxRuntime.jsx(Exibir, {}) })) : null] })) : null }));
|
|
8205
8227
|
}
|
|
8206
8228
|
|
|
8207
8229
|
const LandscapeContainer = styled__default["default"].label `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentThumbnailsStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/contentThumbnails/contentThumbnailsStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"contentThumbnailsStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/contentThumbnails/contentThumbnailsStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,oEA0BrB,CAAA;AACD,eAAO,MAAM,KAAK,oEAMjB,CAAA;AACD,eAAO,MAAM,OAAO,oEAOnB,CAAA;AACD,eAAO,MAAM,UAAU,kEAiBtB,CAAA;AACD,eAAO,MAAM,MAAM,oEAYlB,CAAA;AACD,eAAO,MAAM,aAAa,oEAsBzB,CAAA;AACD,eAAO,MAAM,UAAU,oEAQtB,CAAA;AACD,eAAO,MAAM,KAAK,oEAUjB,CAAA;AACD,eAAO,MAAM,SAAS,oEAQrB,CAAA;AAGD,eAAO,MAAM,eAAe,oEAS3B,CAAA;AACD,eAAO,MAAM,eAAe,oEAM3B,CAAA;AACD,eAAO,MAAM,gBAAgB,kEAS5B,CAAA;AACD,eAAO,MAAM,YAAY,uEAOxB,CAAA;AACD,eAAO,MAAM,WAAW,oEAQvB,CAAA;AACD,eAAO,MAAM,aAAa,oEAKzB,CAAA;AACD,eAAO,MAAM,YAAY,uEAExB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/contentThumbnails/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAA;AASxD,oBAAY,WAAW;IACrB,OAAO,IAAA;IACP,KAAK,IAAA;IACL,OAAO,IAAA;IACP,eAAe,IAAA;IACf,IAAI,IAAA;IACJ,WAAW,IAAA;CACZ;AAED,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,KAAK,EACL,WAAW,EACX,OAAO,EACP,GAAG,EACH,QAAQ,EACR,IAAI,EACJ,QAAQ,EACR,WAAW,EACX,iBAAiB,EACjB,KAAK,EACL,iBAAiB,EACjB,aAAa,EACb,MAAM,EACP,EAAE,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/contentThumbnails/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAA;AASxD,oBAAY,WAAW;IACrB,OAAO,IAAA;IACP,KAAK,IAAA;IACL,OAAO,IAAA;IACP,eAAe,IAAA;IACf,IAAI,IAAA;IACJ,WAAW,IAAA;CACZ;AAED,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,KAAK,EACL,WAAW,EACX,OAAO,EACP,GAAG,EACH,QAAQ,EACR,IAAI,EACJ,QAAQ,EACR,WAAW,EACX,iBAAiB,EACjB,KAAK,EACL,iBAAiB,EACjB,aAAa,EACb,MAAM,EACP,EAAE,kBAAkB,eA0LpB"}
|