frst-components 0.23.22 → 0.23.25

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.
Files changed (23) hide show
  1. package/dist/index.js +104 -85
  2. package/dist/src/components/DS/dropdown-Multiselect/styles/multiselectStyles.d.ts.map +1 -1
  3. package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts.map +1 -1
  4. package/dist/src/components/DS/scroll-container-v2/ButtonControl/index.d.ts.map +1 -1
  5. package/dist/src/components/DS/scroll-container-v2/ButtonControl/useLongPress.d.ts.map +1 -1
  6. package/dist/src/components/DS/select/styles/StylesSelect.d.ts.map +1 -1
  7. package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map +1 -1
  8. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.d.ts.map +1 -1
  9. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.d.ts.map +1 -1
  10. package/dist/src/components/FI/interactionsModal/index.d.ts.map +1 -1
  11. package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
  12. package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
  13. package/dist/src/components/cardLT/MessageBox/icons/errorIcon.d.ts.map +1 -1
  14. package/dist/src/components/cardLT/MessageBox/icons/successIcon.d.ts.map +1 -1
  15. package/dist/src/components/cardLT/MessageBox/icons/warningIcon.d.ts.map +1 -1
  16. package/dist/src/components/commentaryBoxV2/utilitiesComponents/inputEdit/index.d.ts.map +1 -1
  17. package/dist/src/components/commentaryBoxV2/utilitiesComponents/inputEdit/inputEdit.styles.d.ts.map +1 -1
  18. package/dist/src/components/global-menu/components/customMenu/index.d.ts.map +1 -1
  19. package/dist/src/components/input-comment/useInputHook.d.ts.map +1 -1
  20. package/dist/src/components/menu-more/index.d.ts.map +1 -1
  21. package/dist/src/components/menu-more/menuMoreStyles.d.ts +4 -3
  22. package/dist/src/components/menu-more/menuMoreStyles.d.ts.map +1 -1
  23. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3969,6 +3969,7 @@ const useInputHook = ({ limit, placeholder, onSendMentions, onContentFormat, onC
3969
3969
  onContentUnformat(plainContent);
3970
3970
  addOrDeleteMentionedUser();
3971
3971
  };
3972
+ const [spaceCount, setSpaceCount] = React.useState(0);
3972
3973
  const handleInput = (event) => {
3973
3974
  const selection = window.getSelection();
3974
3975
  let inputSearch = '';
@@ -3976,6 +3977,17 @@ const useInputHook = ({ limit, placeholder, onSendMentions, onContentFormat, onC
3976
3977
  let hasKeyPresent = false;
3977
3978
  let textBeforeCursor = '';
3978
3979
  let textBeforeKey = '';
3980
+ if (event.key === ' ') {
3981
+ setSpaceCount((prevCount) => prevCount + 1);
3982
+ if (spaceCount === 1) {
3983
+ setShowMention(false);
3984
+ setSpaceCount(0);
3985
+ return;
3986
+ }
3987
+ }
3988
+ else {
3989
+ setSpaceCount(0);
3990
+ }
3979
3991
  if (selection && selection.rangeCount > 0) {
3980
3992
  const range = selection.getRangeAt(0);
3981
3993
  if (range.startContainer.textContent === null)
@@ -4006,9 +4018,11 @@ const useInputHook = ({ limit, placeholder, onSendMentions, onContentFormat, onC
4006
4018
  }
4007
4019
  }
4008
4020
  if ((hasSpaceBeForeKey && hasKeyPresent) || (textBeforeCursor === '@' && textBeforeKey.length === 0)) {
4009
- setShowMention(true);
4010
4021
  setInputSearch(inputSearch);
4011
4022
  !!onChange && onChange(inputSearch);
4023
+ if (event.key === '@' || (textBeforeCursor === '@' && textBeforeKey.length === 0)) {
4024
+ setShowMention(true);
4025
+ }
4012
4026
  }
4013
4027
  countChars();
4014
4028
  createFormatAndTextContentToSaveComment();
@@ -5188,32 +5202,29 @@ styled__default["default"].p `
5188
5202
  font-size: 16px;
5189
5203
  `;
5190
5204
  const ButtonMore$1 = styled__default["default"](Button__default["default"]) `
5191
- width: 30px !important;
5192
- min-width: 30px !important;
5193
- max-width: 30px !important;
5194
- height: 30px !important;
5195
- margin: 0px !important;
5196
- padding: 0px !important;
5197
- display: flex !important;
5198
- justify-content: center !important;
5199
- border-radius: 12px !important;
5200
- background-color: transparent !important;
5201
- ${({ isHover }) => isHover && `&:hover {
5202
- background-color: #FFF9 !important;
5203
- }`};
5205
+ width: 30px !important;
5206
+ min-width: 30px !important;
5207
+ max-width: 30px !important;
5208
+ height: 30px !important;
5209
+ margin: 0px !important;
5210
+ padding: 0px !important;
5211
+ display: flex !important;
5212
+ justify-content: center !important;
5213
+ border-radius: 12px !important;
5214
+ background-color: transparent !important;
5204
5215
  `;
5205
5216
  const MenuCustom$2 = styled__default["default"](Menu__default["default"]) `
5206
- margin-top: ${({ isArrowInMenu }) => isArrowInMenu ? '8px' : '15px'};
5207
- margin-left: 30px;
5208
- overflow: hidden;
5209
- border-radius: 8px;
5217
+ margin-top: ${({ isArrowInMenu }) => (isArrowInMenu ? '8px' : '15px')};
5218
+ margin-left: 30px;
5219
+ overflow: hidden;
5220
+ border-radius: 8px;
5210
5221
 
5211
5222
  & .MuiPaper-root {
5212
- border-radius: 8px !important;
5213
- box-shadow: 0px 15px 20px -20px rgba(34, 34, 34, 0.15), 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
5214
- overflow: visible;
5215
- background: #00000000;
5216
- ${({ isArrowInMenu }) => isArrowInMenu &&
5223
+ border-radius: 8px !important;
5224
+ box-shadow: 0px 15px 20px -20px rgba(34, 34, 34, 0.15), 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
5225
+ overflow: visible;
5226
+ background: #00000000;
5227
+ ${({ isArrowInMenu }) => isArrowInMenu &&
5217
5228
  `&:before {
5218
5229
  content: "";
5219
5230
  position: absolute;
@@ -5235,65 +5246,83 @@ border-radius: 8px;
5235
5246
  border-left: 8px solid transparent;
5236
5247
  border-right: 8px solid transparent;
5237
5248
 
5238
- }`}
5239
- }
5240
- ul {
5241
- box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15), 0px 15px 20px -20px rgba(34, 34, 34, 0.15);
5242
- padding-top: 0px;
5243
- padding-bottom: 0px;
5244
- border: 1px solid ${({ isDarkMode }) => isDarkMode ? '#1f1f1f' : '#EBEBEB'}!important;
5245
- border-radius: 8px!important;
5246
- overflow: hidden;
5247
- background:${({ isDarkMode }) => isDarkMode ? '#1f1f1f' : '#FFF'};
5248
- min-width: 160px;
5249
- width: auto;
5250
- &:hover {
5251
- background:${({ isDarkMode }) => isDarkMode ? '#525252' : '#FFF'};
5252
- border: 1px solid ${({ isDarkMode }) => isDarkMode ? '#525252' : '#EBEBEB'} !important;
5249
+ }`}
5253
5250
  }
5254
- li {
5255
- ${({ isPaddingInMenu }) => isPaddingInMenu && `padding-left: 25px;`}
5251
+ ul {
5252
+ box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15), 0px 15px 20px -20px rgba(34, 34, 34, 0.15);
5253
+ padding-top: 0px;
5254
+ padding-bottom: 0px;
5255
+ border: 1px solid ${({ isDarkMode }) => (isDarkMode ? '#1f1f1f !important;' : '#EBEBEB !important;')}!important;
5256
+ border-radius: 8px !important;
5257
+ overflow: hidden;
5258
+ background: ${({ isDarkMode }) => (isDarkMode ? '#1f1f1f !important;' : '#FFF !important;')};
5259
+ min-width: 160px;
5260
+ width: auto;
5261
+ /* &:hover {
5262
+ background:${({ isDarkMode }) => (isDarkMode ? '#525252 !important;' : '#FFF !important;')};
5263
+ border: 1px solid ${({ isDarkMode }) => (isDarkMode ? '#525252 !important;' : '#EBEBEB !important;')} !important;
5264
+ } */
5265
+ li {
5266
+ ${({ isPaddingInMenu }) => isPaddingInMenu && `padding-left: 25px; !important;`}
5267
+ }
5256
5268
  }
5257
- }
5258
5269
  `;
5259
- const MenuItemCustom$2 = styled__default["default"](MenuItem__default["default"]) `
5260
- background-color: ${({ theme, isDarkMode }) => isDarkMode ? `#1f1f1f` : theme.colors.shadeWhite} !important;
5261
- ${({ isPaddingInMenu }) => isPaddingInMenu && `padding-right: 45px!important;`}
5270
+ styled__default["default"](MenuItem__default["default"]) `
5271
+ background-color: ${({ theme, isDarkMode }) => isDarkMode ? `#1f1f1f !important;` : theme.colors.shadeWhite} !important;
5272
+ ${({ isPaddingInMenu }) => isPaddingInMenu && `padding-right: 45px !important;`}
5262
5273
  margin: 1px!important;
5263
- transition: none!important;
5264
- animation: none!important;
5265
- &:hover {
5266
- background-color: ${({ isDarkMode }) => isDarkMode ? `#525252 !important;` : `#F7F9FC!important;`};
5274
+ transition: none !important;
5275
+ animation: none !important;
5276
+ &:hover {
5277
+ background-color: ${({ isDarkMode }) => (isDarkMode ? `#525252 !important;` : `#F7F9FC !important;`)};
5267
5278
  }
5268
- &:active {
5269
- background-color: ${({ isDarkMode }) => isDarkMode ? `#525252 !important;` : `#FCF3EB!important;`};
5279
+ &:active {
5280
+ background-color: ${({ isDarkMode }) => (isDarkMode ? `#525252 !important;` : `#FCF3EB !important;`)};
5270
5281
  }
5271
5282
  `;
5272
5283
  styled__default["default"](MenuItem__default["default"]) `
5273
- color: white!important;
5274
- background-color: #F5792A!important;
5284
+ color: white !important;
5285
+ background-color: #f5792a !important;
5275
5286
 
5276
- display: flex;
5277
- flex-direction: row;
5287
+ display: flex;
5288
+ flex-direction: row;
5278
5289
  &:hover {
5279
- background-color: #FD9350!important;
5280
- }
5290
+ background-color: #fd9350 !important;
5291
+ }
5281
5292
  `;
5282
- const TextOption$1 = styled__default["default"].div `
5283
- margin-left: 10px;
5284
- padding-top: 1px;
5285
- font-family: 'PT Sans';
5286
- font-style: normal;
5287
- font-weight: 400;
5288
- font-size: 16px;
5289
- line-height: 17.6px;
5293
+ styled__default["default"].div `
5294
+ margin-left: 10px;
5295
+ padding-top: 1px;
5296
+ font-family: 'PT Sans';
5297
+ font-style: normal;
5298
+ font-weight: 400;
5299
+ font-size: 16px;
5300
+ line-height: 17.6px;
5290
5301
  `;
5291
- const IconOption = styled__default["default"].div `
5292
- width: 20px;
5293
- height: 30px;
5294
- display: flex;
5295
- align-items: center;
5296
- justify-content: center;
5302
+ styled__default["default"].div `
5303
+ width: 20px;
5304
+ height: 30px;
5305
+ display: flex;
5306
+ align-items: center;
5307
+ justify-content: center;
5308
+ `;
5309
+ const ButtonMenuNotification = styled__default["default"].button `
5310
+ width: 100% !important;
5311
+ text-decoration: none !important;
5312
+ color: ${({ isColor }) => (isColor ? isColor : `#FFFFF`)} !important;
5313
+ padding: 6px 16px !important;
5314
+ border: none !important;
5315
+ background: transparent !important;
5316
+ font-family: 'PT Sans' !important;
5317
+ font-style: normal !important;
5318
+ font-weight: 400 !important;
5319
+ font-size: 16px !important;
5320
+ display: flex !important;
5321
+ justify-content: start !important;
5322
+ cursor: pointer !important;
5323
+ :hover {
5324
+ background-color: rgb(82, 82, 82) !important;
5325
+ }
5297
5326
  `;
5298
5327
 
5299
5328
  function MenuMore({ iconButton, options, style, closeAfterClick, isHover = true, isArrowInMenu = true, isPaddingInMenu = true, isDarkMode = false }) {
@@ -5309,16 +5338,12 @@ function MenuMore({ iconButton, options, style, closeAfterClick, isHover = true,
5309
5338
  const handleClose = () => {
5310
5339
  setAnchorEl(null);
5311
5340
  };
5312
- return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...style }, children: [jsxRuntime.jsx(ButtonMore$1, { id: "basic-button", disableRipple: isHover ? false : true, "aria-controls": "basic-menu", "aria-haspopup": "true", "aria-expanded": open ? 'true' : undefined, onClick: handleClick, isHover: isHover, children: iconButton ? iconButton : jsxRuntime.jsx(MoreDotsVertical, { fill: "#444" }) }), listOptions && listOptions?.length > 0 && (jsxRuntime.jsx(MenuCustom$2, { id: "basic-menu", anchorOrigin: { vertical: 'bottom', horizontal: 'left' }, transformOrigin: { vertical: 'top', horizontal: 'right' }, anchorEl: anchorEl, open: open, onClose: handleClose, isArrowInMenu: isArrowInMenu, isPaddingInMenu: isPaddingInMenu, isDarkMode: isDarkMode, children: listOptions.map((itemOption, index) => {
5313
- return (jsxRuntime.jsx(material.Box, { children: jsxRuntime.jsxs(MenuItemCustom$2, { isPaddingInMenu: isPaddingInMenu, isDarkMode: isDarkMode, onClick: () => {
5341
+ return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...style }, children: [jsxRuntime.jsx(ButtonMore$1, { id: "basic-button", disableRipple: isHover ? false : true, "aria-controls": "basic-menu", "aria-haspopup": "true", "aria-expanded": open ? 'true' : undefined, onClick: handleClick, children: iconButton ? iconButton : jsxRuntime.jsx(MoreDotsVertical, { fill: "#444" }) }), listOptions && listOptions?.length > 0 && (jsxRuntime.jsx(MenuCustom$2, { id: "basic-menu", anchorOrigin: { vertical: 'bottom', horizontal: 'left' }, transformOrigin: { vertical: 'top', horizontal: 'right' }, anchorEl: anchorEl, open: open, onClose: handleClose, isArrowInMenu: isArrowInMenu, isPaddingInMenu: isPaddingInMenu, isDarkMode: isDarkMode, children: listOptions.map((itemOption, index) => {
5342
+ console.log("options ", itemOption);
5343
+ return (jsxRuntime.jsx(material.Box, { children: jsxRuntime.jsx(ButtonMenuNotification, { onClick: () => {
5314
5344
  itemOption?.onClick();
5315
5345
  closeAfterClick && handleClose();
5316
- }, style: {
5317
- borderBottom: listOptions?.length - 1 == index ? '' : isDarkMode ? '1px solid #525252' : '1px solid #EBEBEB',
5318
- color: itemOption?.color ? itemOption?.color : '#222',
5319
- pointerEvents: itemOption?.disabled ? 'none' : 'auto',
5320
- cursor: itemOption?.disabled ? 'default' : 'pointer'
5321
- }, disableRipple: true, children: [itemOption?.startIcon && jsxRuntime.jsx(IconOption, { children: itemOption?.startIcon }), jsxRuntime.jsx(TextOption$1, { style: !itemOption?.startIcon ? { marginLeft: '0px' } : {}, children: itemOption?.description })] }) }, index));
5346
+ }, isColor: itemOption?.color, children: itemOption?.description }) }, index));
5322
5347
  }) }))] }) }));
5323
5348
  }
5324
5349
 
@@ -16860,18 +16885,12 @@ function InteractionsModal({ textTitle, textSubtitle, listUsers, isOpen, handleC
16860
16885
  }
16861
16886
  };
16862
16887
  }, []);
16863
- const [listUsersState, setListUsersState] = React.useState(listUsers);
16864
- React.useEffect(() => {
16865
- if (newListUsers) {
16866
- setListUsersState((listUsersState) => [...listUsersState, ...newListUsers]);
16867
- }
16868
- }, [newListUsers]);
16869
16888
  return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsx(material.Modal, { open: isOpen, onClose: () => handleClickClose(), children: jsxRuntime.jsxs(Container, { style: {
16870
16889
  top: '50%',
16871
16890
  left: '50%',
16872
16891
  transform: 'translate(-50%, -50%)',
16873
16892
  ...style
16874
- }, children: [jsxRuntime.jsxs(HeaderDiv, { children: [jsxRuntime.jsx("div", { style: { width: '100%', display: 'flex', justifyContent: 'flex-end' }, children: jsxRuntime.jsx(CloseButton, { onClick: () => handleClickClose(), children: jsxRuntime.jsx(CloseIcon, { width: '11' }) }) }), jsxRuntime.jsx(Typography, { children: textTitle }), jsxRuntime.jsx(Typography, { children: textSubtitle })] }), jsxRuntime.jsx(ContentDiv, { ref: scrollContainerRef, onScroll: handleScroll, onClick: trackClick ? () => trackClick() : () => { }, children: jsxRuntime.jsx(ContentScroll, { children: listUsersState && listUsersState.map((item) => {
16893
+ }, children: [jsxRuntime.jsxs(HeaderDiv, { children: [jsxRuntime.jsx("div", { style: { width: '100%', display: 'flex', justifyContent: 'flex-end' }, children: jsxRuntime.jsx(CloseButton, { onClick: () => handleClickClose(), children: jsxRuntime.jsx(CloseIcon, { width: '11' }) }) }), jsxRuntime.jsx(Typography, { children: textTitle }), jsxRuntime.jsx(Typography, { children: textSubtitle })] }), jsxRuntime.jsx(ContentDiv, { ref: scrollContainerRef, onScroll: handleScroll, onClick: trackClick ? () => trackClick() : () => { }, children: jsxRuntime.jsx(ContentScroll, { children: newListUsers && newListUsers.map((item) => {
16875
16894
  return (jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsx(CardItemUser, { children: item?.onClickUserInfo ?
16876
16895
  jsxRuntime.jsxs(Tooltip$2, { direction: "bottom", content: item.textVisitProfile ? item.textVisitProfile : 'Visitar perfil', trigger: 'hover', width: '101px', height: '32px', style: { top: '10px', textAlign: 'center' }, children: [jsxRuntime.jsx(Avatar, { size: '50px', src: item?.avatar, isActiveClick: true, onClick: () => item?.onClickUserInfo ? item?.onClickUserInfo() : {} }), jsxRuntime.jsxs(UserInfoContainer, { onClick: () => item?.onClickUserInfo ? item?.onClickUserInfo() : {}, style: { cursor: item?.onClickUserInfo ? 'pointer' : 'auto' }, children: [jsxRuntime.jsxs(NameUser$2, { children: [" ", item?.name, " "] }), jsxRuntime.jsxs(PositionUser, { children: [" ", item?.position, " "] }), jsxRuntime.jsxs(OrgUser, { children: [" ", item?.organization, " "] })] })] })
16877
16896
  : jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(Avatar, { size: '50px', src: item?.avatar }), jsxRuntime.jsxs(UserInfoContainer, { onClick: () => item?.onClickUserInfo ? item?.onClickUserInfo() : {}, style: { cursor: item?.onClickUserInfo ? 'pointer' : 'auto' }, children: [jsxRuntime.jsxs(NameUser$2, { children: [" ", item?.name, " "] }), jsxRuntime.jsxs(PositionUser, { children: [" ", item?.position, " "] }), jsxRuntime.jsxs(OrgUser, { children: [" ", item?.organization, " "] })] })] }) }, item?.id) }));
@@ -1 +1 @@
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,oEAexB,CAAA;AAED,eAAO,MAAM,YAAY,oEA0CxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAStB,CAAA;AAED,eAAO,MAAM,SAAS,oEA4BrB,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"}
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,oEAexB,CAAA;AAED,eAAO,MAAM,YAAY,oEA0CxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAStB,CAAA;AAED,eAAO,MAAM,SAAS,oEA4BrB,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"}
@@ -1 +1 @@
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
+ {"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":["../../../../../../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
+ {"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":["../../../../../../src/components/DS/scroll-container-v2/ButtonControl/useLongPress.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAAC,QAAQ,aAAW,EAAE,EAAE,SAAO;;;;;;EAsB1D"}
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":["../../../../../../src/components/DS/select/styles/StylesSelect.tsx"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,iBAAiB,6EAa7B,CAAA;AACD,eAAO,MAAM,YAAY,6EAaxB,CAAA;AACD,eAAO,MAAM,cAAc,6EAsC1B,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"}
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;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,iBAAiB,6EAa7B,CAAA;AACD,eAAO,MAAM,YAAY,6EAaxB,CAAA;AACD,eAAO,MAAM,cAAc,6EAsC1B,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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4BAA4B,CAAA;AAKtE,eAAO,MAAM,kBAAkB,scAgC5B,yBAAyB,gBAsH3B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4BAA4B,CAAA;AAKtE,eAAO,MAAM,kBAAkB,scAgC5B,yBAAyB,gBAsH3B,CAAA"}
@@ -1 +1 @@
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
+ {"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":["../../../../../../../src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,SAAS,oEAGrB,CAAA"}
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,oEAGrB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/interactionsModal/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,kBAAkB,EAAS,MAAM,qBAAqB,CAAA;AAkB/D,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACtC,SAAS,EACT,YAAY,EACZ,SAAS,EACT,MAAM,EACN,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,UAAU,EACV,KAAK,EAAE,EAAE,kBAAkB,eAyG9B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/interactionsModal/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,kBAAkB,EAAS,MAAM,qBAAqB,CAAA;AAkB/D,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACtC,SAAS,EACT,YAAY,EACZ,SAAS,EACT,MAAM,EACN,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,UAAU,EACV,KAAK,EAAE,EAAE,kBAAkB,eAoG9B"}
@@ -1 +1 @@
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
+ {"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":["../../../../../../../src/components/IJ/learningCycleCard/components/menu/menuStyle.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,oEAuBxB,CAAA"}
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"}
@@ -1 +1 @@
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
+ {"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":["../../../../../../src/components/cardLT/MessageBox/icons/successIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBASnC"}
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":["../../../../../../src/components/cardLT/MessageBox/icons/warningIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBAWnC"}
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":["../../../../../../src/components/commentaryBoxV2/utilitiesComponents/inputEdit/index.tsx"],"names":[],"mappings":";AAMA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAE9C,eAAO,MAAM,SAAS,kNAcnB,UAAU,gBAyEZ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/commentaryBoxV2/utilitiesComponents/inputEdit/index.tsx"],"names":[],"mappings":";AAMA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAE9C,eAAO,MAAM,SAAS,kNAcnB,UAAU,gBAyEZ,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"inputEdit.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/commentaryBoxV2/utilitiesComponents/inputEdit/inputEdit.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,SAAS,oEAKrB,CAAA;AAED,eAAO,MAAM,QAAQ,kEAOpB,CAAA;AAED,eAAO,MAAM,gBAAgB,oEAM5B,CAAA"}
1
+ {"version":3,"file":"inputEdit.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/commentaryBoxV2/utilitiesComponents/inputEdit/inputEdit.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,oEAI1B,CAAA;AAED,eAAO,MAAM,SAAS,oEAKrB,CAAA;AAED,eAAO,MAAM,QAAQ,kEAOpB,CAAA;AAED,eAAO,MAAM,gBAAgB,oEAM5B,CAAA"}
@@ -1 +1 @@
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
+ {"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":"useInputHook.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/useInputHook.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAE1D,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC5C,eAAe,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IAC1C,iBAAiB,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IAC5C,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,kBAAkB,CAAC,EAAE,IAAI,CAAA;IACzB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,eAAO,MAAM,YAAY,iIAUtB,UAAU;yBAqHiB,mBAAmB;sDAoFS,OAAO;;;;;;;8BAzJ9B,IAAI;;;;;CAiWtC,CAAA"}
1
+ {"version":3,"file":"useInputHook.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/useInputHook.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAE1D,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC5C,eAAe,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IAC1C,iBAAiB,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IAC5C,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,kBAAkB,CAAC,EAAE,IAAI,CAAA;IACzB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,eAAO,MAAM,YAAY,iIAUtB,UAAU;yBAwHiB,mBAAmB;sDAkGS,OAAO;;;;;;;8BA1K9B,IAAI;;;;;CAkXtC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/menu-more/index.tsx"],"names":[],"mappings":";AAGA,OAAO,yBAAyB,CAAA;AAKhC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAGtC,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC/B,UAAU,EACV,OAAO,EACP,KAAK,EACL,eAAe,EACf,OAAc,EACd,aAAoB,EACpB,eAAsB,EACtB,UAAkB,EACnB,EAAE,SAAS,eA2EX"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/menu-more/index.tsx"],"names":[],"mappings":";AAGA,OAAO,yBAAyB,CAAA;AAKhC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAGtC,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC/B,UAAU,EACV,OAAO,EACP,KAAK,EACL,eAAe,EACf,OAAc,EACd,aAAoB,EACpB,eAAsB,EACtB,UAAkB,EACnB,EAAE,SAAS,eAmFX"}
@@ -1,8 +1,6 @@
1
1
  import Menu from '@mui/material/Menu';
2
2
  export declare const UserName: import("styled-components").StyledComponent<"p", any, {}, never>;
3
- export declare const ButtonMore: import("styled-components").StyledComponent<import("@mui/material").ExtendButtonBase<import("@mui/material/Button").ButtonTypeMap<{}, "button">>, any, {
4
- isHover: boolean;
5
- }, never>;
3
+ export declare const ButtonMore: import("styled-components").StyledComponent<import("@mui/material").ExtendButtonBase<import("@mui/material/Button").ButtonTypeMap<{}, "button">>, any, {}, never>;
6
4
  export declare const MenuCustom: import("styled-components").StyledComponent<typeof Menu, any, {
7
5
  isArrowInMenu: boolean;
8
6
  isPaddingInMenu: boolean;
@@ -15,4 +13,7 @@ export declare const MenuItemCustom: import("styled-components").StyledComponent
15
13
  export declare const SubMenuItemCustom: import("styled-components").StyledComponent<import("@mui/material").ExtendButtonBase<import("@mui/material/MenuItem").MenuItemTypeMap<{}, "li">>, any, {}, never>;
16
14
  export declare const TextOption: import("styled-components").StyledComponent<"div", any, {}, never>;
17
15
  export declare const IconOption: import("styled-components").StyledComponent<"div", any, {}, never>;
16
+ export declare const ButtonMenuNotification: import("styled-components").StyledComponent<"button", any, {
17
+ isColor: string;
18
+ }, never>;
18
19
  //# sourceMappingURL=menuMoreStyles.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"menuMoreStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/menu-more/menuMoreStyles.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,oBAAoB,CAAA;AAIrC,eAAO,MAAM,QAAQ,kEAIpB,CAAA;AAED,eAAO,MAAM,UAAU;aAA8B,OAAO;SAc3D,CAAA;AAGD,eAAO,MAAM,UAAU;mBAAmC,OAAO;qBAAmB,OAAO;gBAAc,OAAO;SAqD/G,CAAA;AAED,eAAO,MAAM,cAAc;qBAAyC,OAAO;gBAAc,OAAO;SAY/F,CAAA;AAED,eAAO,MAAM,iBAAiB,mKAS7B,CAAA;AAED,eAAO,MAAM,UAAU,oEAQtB,CAAA;AAED,eAAO,MAAM,UAAU,oEAMtB,CAAA"}
1
+ {"version":3,"file":"menuMoreStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/menu-more/menuMoreStyles.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,oBAAoB,CAAA;AAIrC,eAAO,MAAM,QAAQ,kEAIpB,CAAA;AAED,eAAO,MAAM,UAAU,mKAWtB,CAAA;AAED,eAAO,MAAM,UAAU;mBAAiC,OAAO;qBAAmB,OAAO;gBAAc,OAAO;SAsD7G,CAAA;AAED,eAAO,MAAM,cAAc;qBAAuC,OAAO;gBAAc,OAAO;SAa7F,CAAA;AAED,eAAO,MAAM,iBAAiB,mKAS7B,CAAA;AAED,eAAO,MAAM,UAAU,oEAQtB,CAAA;AAED,eAAO,MAAM,UAAU,oEAMtB,CAAA;AACD,eAAO,MAAM,sBAAsB;aAA2B,MAAM;SAiBnE,CAAA"}
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.23.22",
4
+ "version": "0.23.25",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",