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
- width: 270px;
7958
- min-height: 409px;
7959
- background-color: ${({ theme }) => theme.colors.primary2};
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
- justify-content: center;
7963
- align-items: center;
7973
+ align-items: flex-start;
7964
7974
  position: relative;
7965
7975
  box-sizing: border-box;
7966
- padding: 16px 16px 24px 16px;
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
- width: 236px;
7970
- height: 310px;
7971
- border-radius: 8px;
7972
- object-fit: cover;
7973
- object-position: center;
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
- display: flex;
7977
- flex-direction: row;
7978
- align-items: center;
7979
- justify-content: flex-start;
7980
- position: relative;
7981
- width: 100%;
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
- font-family: 'Work Sans';
7986
- font-style: normal;
7987
- font-weight: 700;
7988
- font-size: 20px;
7989
- line-height: 23px;
7990
- display: flex;
7991
- align-items: center;
7992
- margin-right: 20px;
7993
- color: ${({ theme }) => theme.colors.shadeWhite};
7994
- word-wrap: break-word;
7995
- overflow: hidden;
7996
- display: -webkit-box;
7997
- -webkit-box-orient: vertical;
7998
- -webkit-line-clamp: 4; /* start showing ellipsis when 3rd line is reached */
7999
- white-space: pre-wrap;
8000
- text-overflow: ellipsis;
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
- background: none;
8004
- width: 20px;
8005
- height: 20px;
8006
- position: absolute;
8007
- right: 0;
8008
- top: 0;
8009
- cursor: pointer;
8017
+ background: none;
8018
+ width: 20px;
8019
+ height: 20px;
8020
+ position: absolute;
8021
+ right: 0;
8022
+ top: 0;
8023
+ cursor: pointer;
8010
8024
 
8011
- &:hover {
8012
- opacity: 0.5;
8013
- }
8025
+ &:hover {
8026
+ opacity: 0.5;
8027
+ }
8014
8028
  `;
8015
8029
  const ContainerCard$1 = styled__default["default"].div `
8016
- width: 270px;
8017
- height: 76px;
8018
- background-color: ${({ theme }) => theme.colors.shadeWhite};
8019
- display: flex;
8020
- align-items: center;
8021
- padding: 8px;
8022
- position: relative;
8023
- overflow: hidden;
8024
- border-bottom: 1px solid ${({ theme }) => theme.colors.borderPrimary};
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
- &:hover {
8027
- background-color: ${({ theme }) => theme.colors.neutralsGrey9};
8028
- }
8040
+ &:hover {
8041
+ background-color: ${({ theme }) => theme.colors.neutralsGrey9};
8042
+ }
8029
8043
 
8030
- &:active {
8031
- background-color: ${({ theme }) => theme.colors.neutralsGrey6};
8032
- }
8033
-
8034
- &:hover .trash {
8035
- right: 15px;
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
- width: 17.29px;
8040
- height: 51px;
8041
- margin-left: -11px;
8042
- display: flex;
8043
- flex-direction: column;
8044
- justify-content: center;
8045
- align-items: center;
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
- width: 166px;
8049
- margin-left: 12px;
8050
- word-wrap: break-word;
8051
- overflow: hidden;
8052
- display: -webkit-box;
8053
- -webkit-box-orient: vertical;
8054
- -webkit-line-clamp: 2; /* start showing ellipsis when 3rd line is reached */
8055
- white-space: pre-wrap;
8056
- text-overflow: ellipsis;
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
- cursor: pointer;
8060
- height: 100%;
8061
- display: flex;
8062
- align-items: center;
8063
- right: -15px;
8064
- position: absolute;
8065
- transition: all .5s linear;
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
- width: 270px;
8071
- height: 499px;
8072
- background-color: ${({ theme }) => theme.colors.primary2};
8073
- display: flex;
8074
- flex-direction: column;
8075
- justify-content: center;
8076
- align-items: center;
8077
- position: relative;
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
- width: 232px;
8082
- height: 75px;
8083
- position: absolute;
8084
- top: 0;
8085
- margin: 20px;
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
- font-family: 'PT Sans';
8089
- font-style: normal;
8090
- font-weight: 400;
8091
- font-size: 16px;
8092
- line-height: 21px;
8093
- color: #ffffff;
8094
- padding-bottom: 8px;
8095
- white-space: nowrap;
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
- width: 232px;
8099
- height: 48px;
8100
- border-radius: 8px;
8101
- border: 1px solid #E0E0E0;
8102
- color: #9c9c9c;
8103
- padding-left: 10px;
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
- width: 232px;
8107
- height: 310px;
8108
- margin-bottom: 70px;
8109
- border-radius: 8px;
8110
- position: absolute;
8111
- object-fit: cover;
8112
- bottom: 0;
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
- display: flex;
8116
- flex-direction: row;
8117
- position: absolute ;
8118
- margin-top: 425px;
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
- color: #9c9c9c;
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: () => { handleClick(item); }, style: { display: 'flex', flexDirection: 'row', alignItems: 'center', height: '100%', cursor: 'pointer' }, children: [iconList[item.type], jsxRuntime.jsx(Title$2, { children: item.title })] }), jsxRuntime.jsx(IconTrash, { className: "trash", onClick: () => { removeContentList(item); }, children: jsxRuntime.jsx(TrashIcon, { fill: '#C00F00' }) })] })) }, index));
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.jsxs(Container$a, { className: (variant = 'individualCourse'), 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 }));
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,oEAWrB,CAAA;AACD,eAAO,MAAM,KAAK,oEAMjB,CAAA;AACD,eAAO,MAAM,OAAO,oEAQnB,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,oEASrB,CAAA;AAGD,eAAO,MAAM,eAAe,oEAU3B,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
+ {"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,eA2KpB"}
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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "frst-components",
3
3
  "homepage": "http://FRST-Falconi.github.io/storybook.frstfalconi.com",
4
- "version": "0.21.9",
4
+ "version": "0.21.10",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",