frst-components 0.23.89 → 0.23.90

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 (25) hide show
  1. package/dist/index.js +49 -39
  2. package/dist/src/components/DS/hypotesisAndImpediment/UpDownButtons/upDownButtons.styles.d.ts.map +1 -1
  3. package/dist/src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.d.ts +4 -1
  4. package/dist/src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.d.ts.map +1 -1
  5. package/dist/src/components/DS/hypotesisAndImpediment/index.d.ts.map +1 -1
  6. package/dist/src/components/DS/impedimentosTab/index.d.ts.map +1 -1
  7. package/dist/src/components/DS/impedimentosTab/styles.d.ts.map +1 -1
  8. package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map +1 -1
  9. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.d.ts.map +1 -1
  10. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.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/form-elements/table/parts/TableBody/index.d.ts.map +1 -1
  14. package/dist/src/components/form-elements/table/parts/TableBody/tableStyle.d.ts.map +1 -1
  15. package/dist/src/components/form-elements/table/parts/TableHead/index.d.ts.map +1 -1
  16. package/dist/src/components/form-elements/table/parts/TableHead/tableStyle.d.ts.map +1 -1
  17. package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/collaboratorAvatarStyle.d.ts.map +1 -1
  18. package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.d.ts.map +1 -1
  19. package/dist/src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.d.ts.map +1 -1
  20. package/dist/src/components/form-elements/table-actions/parts/DateLimit/index.d.ts.map +1 -1
  21. package/dist/src/components/form-elements/table-actions/parts/EmptyState/emptyStateStyle.d.ts.map +1 -1
  22. package/dist/src/components/form-elements/table-actions/parts/EmptyState/index.d.ts.map +1 -1
  23. package/dist/src/components/form-elements/table-actions/parts/TagStatus/index.d.ts.map +1 -1
  24. package/dist/src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.d.ts.map +1 -1
  25. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3261,7 +3261,7 @@ const Title$7 = styled__default["default"].span `
3261
3261
  styled__default["default"].span `
3262
3262
  font-weight: 700;
3263
3263
  `;
3264
- const Separator$1 = styled__default["default"].div `
3264
+ const Separator = styled__default["default"].div `
3265
3265
  font-weight: bold;
3266
3266
  margin: 0 8px;
3267
3267
  `;
@@ -3786,7 +3786,7 @@ const HypothesisComponent = ({ description, type, id, title, votes = [], onVote,
3786
3786
  setIsEditing(true);
3787
3787
  }
3788
3788
  };
3789
- return (jsxRuntime.jsx(MainContainer$1, { children: jsxRuntime.jsxs(Container$m, { type: type, id: id, ref: ContainerRef, children: [jsxRuntime.jsxs(SplitContainerDescription$1, { children: [showAvatar && (jsxRuntime.jsx(Avatar, { src: avatar, size: "24px", style: { marginRight: '8px', cursor: authorId ? 'pointer' : 'default' }, onClick: () => handleViewProfile(authorId) })), jsxRuntime.jsx(Title$7, { children: title }), jsxRuntime.jsx(Separator$1, { children: "|" }), jsxRuntime.jsx(Description$5, { children: isEditing ? (jsxRuntime.jsx("span", { style: { display: 'flex', width: '100%' }, children: jsxRuntime.jsx("div", { contentEditable: true, style: { width: '100%', background: 'white' }, onInput: (e) => setEditDescription(e.currentTarget.textContent), onBlur: handleSaveDescription, children: description }) })) : (jsxRuntime.jsx("div", { style: { width: '100%' }, onDoubleClick: handleDoubleClick, children: jsxRuntime.jsx("span", { children: editDescription }) })) }), validHasEditHipotesis && (jsxRuntime.jsx(MenuMore, { options: type === HypothesisEnum.PRIORITIZE
3789
+ return (jsxRuntime.jsx(MainContainer$1, { children: jsxRuntime.jsxs(Container$m, { type: type, id: id, ref: ContainerRef, children: [jsxRuntime.jsxs(SplitContainerDescription$1, { children: [showAvatar && (jsxRuntime.jsx(Avatar, { src: avatar, size: "24px", style: { marginRight: '8px', cursor: authorId ? 'pointer' : 'default' }, onClick: () => handleViewProfile(authorId) })), jsxRuntime.jsx(Title$7, { children: title }), jsxRuntime.jsx(Separator, { children: "|" }), jsxRuntime.jsx(Description$5, { children: isEditing ? (jsxRuntime.jsx("span", { style: { display: 'flex', width: '100%' }, children: jsxRuntime.jsx("div", { contentEditable: true, style: { width: '100%', background: 'white' }, onInput: (e) => setEditDescription(e.currentTarget.textContent), onBlur: handleSaveDescription, children: description }) })) : (jsxRuntime.jsx("div", { style: { width: '100%' }, onDoubleClick: handleDoubleClick, children: jsxRuntime.jsx("span", { children: editDescription }) })) }), validHasEditHipotesis && (jsxRuntime.jsx(MenuMore, { options: type === HypothesisEnum.PRIORITIZE
3790
3790
  ? [
3791
3791
  {
3792
3792
  description: 'Editar',
@@ -7331,7 +7331,7 @@ const TabInfoWrapper = styled__default["default"]('div') `
7331
7331
  padding: 12px 16px;
7332
7332
  border-radius: 0px 0px 8px 8px;
7333
7333
  background-color: #E5CBF1;
7334
- height: 56px;
7334
+ min-height: 56px;
7335
7335
 
7336
7336
  p {
7337
7337
  font-family: 'PT Sans';
@@ -7339,9 +7339,6 @@ const TabInfoWrapper = styled__default["default"]('div') `
7339
7339
  line-height: 1.3;
7340
7340
  color: ${({ theme }) => theme.colors.neutralsGrey1};
7341
7341
  font-weight: 400;
7342
- white-space: nowrap;
7343
- text-overflow: ellipsis;
7344
- overflow: hidden
7345
7342
  }
7346
7343
 
7347
7344
  `;
@@ -7617,22 +7614,21 @@ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpediment
7617
7614
  jsxRuntime.jsx(material.Box, { border: '2px solid #AD46FF', borderRadius: '50%', onClick: selectedTab?.handleClickAvatar, children: jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true }) })
7618
7615
  :
7619
7616
  jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true, onClick: selectedTab?.handleClickAvatar }) }), isEdit ?
7620
- jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsx(material.TextField, { placeholder: editDescription, value: editDescription, onChange: (e) => setEditDescription(e.target.value), fullWidth: true, variant: 'standard', InputProps: {
7621
- autoFocus: true,
7617
+ jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsx(material.TextField, { placeholder: editDescription, value: editDescription, onChange: (e) => setEditDescription(e.target.value), fullWidth: true, multiline: true, variant: 'standard', InputProps: {
7622
7618
  disableUnderline: true,
7623
7619
  style: {
7624
7620
  fontFamily: 'PT Sans',
7625
7621
  fontSize: '14px',
7626
7622
  lineHeight: 1.3
7627
7623
  }
7628
- }, onKeyDown: (event) => {
7624
+ }, inputRef: (input) => input && input.focus(), onKeyDown: (event) => {
7629
7625
  if (event.key === 'Enter') {
7630
7626
  handleUpdate();
7631
7627
  }
7632
7628
  if (event.key === 'Escape') {
7633
7629
  handleCancelUpdate();
7634
7630
  }
7635
- }, onBlur: handleUpdate }) })
7631
+ }, onBlur: handleUpdate, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) }) })
7636
7632
  :
7637
7633
  jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("p", { children: displayDescription }), selectedTab?.showOptions ?
7638
7634
  jsxRuntime.jsx(WrapperMenuMore, { children: jsxRuntime.jsx(MenuMore, { options: [
@@ -7709,15 +7705,11 @@ const MainContainer = styled__default["default"].div `
7709
7705
  const ContainerHypotheis = styled__default["default"].div `
7710
7706
  width: 100%;
7711
7707
  display: flex;
7712
- align-items: center;
7708
+ /* align-items: center; */
7713
7709
  justify-content: space-between;
7714
7710
  font-family: PT Sans;
7715
7711
  font-size: 14px;
7716
7712
  border-radius: 8px;
7717
- /* padding-left: 16px; */
7718
- padding-right: 16px;
7719
- /* padding-top: 10px;
7720
- padding-bottom: 10px; */
7721
7713
  min-height: 52px;
7722
7714
 
7723
7715
  ${({ type, variant }) => {
@@ -7731,10 +7723,12 @@ const SplitContainerDescription = styled__default["default"].div `
7731
7723
  display: flex;
7732
7724
  justify-content: flex-start;
7733
7725
  align-items: center;
7726
+ padding: 16px 16px 16px 0px;
7727
+ gap: 16px;
7734
7728
  height: 100%;
7735
7729
  width: 100%;
7736
7730
  `;
7737
- const Separator = styled__default["default"].div `
7731
+ styled__default["default"].div `
7738
7732
  height: 24px;
7739
7733
  width: 1px;
7740
7734
  margin-left: 14px;
@@ -7752,10 +7746,18 @@ const Title$6 = styled__default["default"].span `
7752
7746
  `;
7753
7747
  const Description$4 = styled__default["default"].span `
7754
7748
  font-weight: 400;
7755
- padding: 8px 0 8px;
7756
7749
  display: flex;
7757
7750
  flex-grow: 1;
7758
7751
  flex-wrap: wrap;
7752
+ align-items: center;
7753
+ padding: 0px 16px 0px 16px;
7754
+
7755
+ ${({ type, variant }) => {
7756
+ const border = separatorColors[variant][type];
7757
+ return styled.css `
7758
+ border-left: 1px solid ${border};
7759
+ `;
7760
+ }}
7759
7761
  `;
7760
7762
 
7761
7763
  const backgroundColors$1 = {
@@ -7780,6 +7782,7 @@ const ContainerArrowButton = styled__default["default"].div `
7780
7782
  display: flex;
7781
7783
  flex-direction: column;
7782
7784
  align-items: center;
7785
+ justify-content: center;
7783
7786
  border-radius: 8px 0 0 8px;
7784
7787
  `;
7785
7788
  const ArrowButton$1 = styled__default["default"].button `
@@ -7788,6 +7791,8 @@ const ArrowButton$1 = styled__default["default"].button `
7788
7791
  width: 100%;
7789
7792
  color: #444444;
7790
7793
  cursor: pointer;
7794
+ display: flex;
7795
+ height: 100%;
7791
7796
  svg: {
7792
7797
  }
7793
7798
  :hover {
@@ -7795,7 +7800,7 @@ const ArrowButton$1 = styled__default["default"].button `
7795
7800
  }
7796
7801
  `;
7797
7802
 
7798
- const UpDownButtons = ({ onUpClick, onDownClick, type, variant }) => (jsxRuntime.jsxs(ContainerArrowButton, { type: type, variant: variant, children: [jsxRuntime.jsx(ArrowButton$1, { onClick: onUpClick, children: jsxRuntime.jsx(ArrowDropUpOutlinedIcon__default["default"], {}) }), jsxRuntime.jsx(ArrowButton$1, { onClick: onDownClick, children: jsxRuntime.jsx(ArrowDropDownOutlinedIcon__default["default"], {}) })] }));
7803
+ const UpDownButtons = ({ onUpClick, onDownClick, type, variant }) => (jsxRuntime.jsxs(ContainerArrowButton, { type: type, variant: variant, children: [jsxRuntime.jsx(ArrowButton$1, { onClick: onUpClick, style: { alignItems: 'flex-end' }, children: jsxRuntime.jsx(ArrowDropUpOutlinedIcon__default["default"], {}) }), jsxRuntime.jsx(ArrowButton$1, { onClick: onDownClick, style: { alignItems: 'flex-start' }, children: jsxRuntime.jsx(ArrowDropDownOutlinedIcon__default["default"], {}) })] }));
7799
7804
 
7800
7805
  const backgroundColors = {
7801
7806
  prioritize: '#EE9F08',
@@ -7806,8 +7811,8 @@ const ContainerVoting = styled__default["default"].div `
7806
7811
  display: flex;
7807
7812
  align-items: center;
7808
7813
  justify-content: center;
7809
- min-width: 68px;
7810
- width: max-content;
7814
+ /* min-width: 68px; */
7815
+ width: fit-content;
7811
7816
  height: 36px;
7812
7817
  padding: 4px;
7813
7818
  cursor: pointer;
@@ -8061,30 +8066,35 @@ hasVoting, voteHasAlreadyBeenRegistered, isVotedByUserLogged, voteText, onDelete
8061
8066
  left: '4px',
8062
8067
  whiteSpace: 'nowrap',
8063
8068
  boxShadow: ' 0px 0px 18px 0px rgba(34, 34, 34, 0.2)'
8064
- }, children: jsxRuntime.jsx(Avatar, { src: avatar, size: isOwnerGoal ? '28px' : '24px', border: avatarBorder, style: { marginRight: '14px', cursor: 'pointer', marginLeft: '16px' }, onClick: () => handleViewProfile(authorId) }) }), jsxRuntime.jsx(Title$6, { children: title }), jsxRuntime.jsx(Separator, { type: type, variant: variant }), jsxRuntime.jsx(Description$4, { onClick: handleClickAction, onDoubleClick: () => {
8069
+ }, children: jsxRuntime.jsx(Avatar, { src: avatar, size: isOwnerGoal ? '28px' : '24px', border: avatarBorder, style: { cursor: 'pointer', marginLeft: '16px' }, onClick: () => handleViewProfile(authorId) }) }), jsxRuntime.jsx(Title$6, { children: title }), jsxRuntime.jsx(Description$4, { type: type, variant: variant, onClick: handleClickAction, onDoubleClick: () => {
8065
8070
  if (clickTimeoutRef.current) {
8066
8071
  clearTimeout(clickTimeoutRef.current);
8067
8072
  }
8068
8073
  if (hasEditHipotesisOrImpediment)
8069
8074
  setIsEditing(true);
8070
- }, style: { minHeight: '36px', height: isEditing ? "16px" : "fit-content" }, children: jsxRuntime.jsxs(Tooltip$2, { content: 'Clique na hipótese para ver as ações vinculadas', direction: 'bottom', wrapperWidth: '100%', style: {
8071
- fontFamily: 'PT Sans',
8072
- fontWeight: 400,
8073
- fontSize: '14px',
8074
- color: '#757575',
8075
- width: '171px',
8076
- height: '52px',
8077
- top: '8px',
8078
- left: '4px',
8079
- whiteSpace: 'wrap',
8080
- boxShadow: ' 0px 25px 18px -20px #22222233;',
8081
- display: variant === 'impediment' ? 'none' : 'block'
8082
- }, children: [jsxRuntime.jsx("div", { style: {
8083
- width: isEditing ? '100%' : '0',
8084
- height: isEditing ? '20px' : '0',
8085
- overflow: 'hidden',
8086
- background: 'transparent',
8087
- }, children: jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: editDescription, onBlur: handleSaveDescription, onChange: handleChange, onKeyDown: handleKeyDown, autoFocus: true, style: { width: '100%', height: '16px', border: 'none', outline: 'none', background: 'transparent' } }) }), jsxRuntime.jsx("div", { style: { width: !isEditing ? '100%' : '0', overflow: 'hidden', }, children: editDescription })] }) }), !isEditing && hasVoting && (jsxRuntime.jsx(Voting, { voteText: voteText, type: type, onDeleteVote: onDeleteVote, votersList: votersList, onVote: () => onVote(id), onChangeVote: () => onChangeVote(id), isVotedByUserLogged: isVotedByUserLogged, voteHasAlreadyBeenRegistered: voteHasAlreadyBeenRegistered, popperStyle: popperStyle })), !isEditing && validHasEditHipotesisOrImpediment && (jsxRuntime.jsx(MenuMore, { options: options, isContainerOptions: true, closeAfterClick: true }))] })] }) }) }));
8075
+ }, style: { minHeight: '36px', height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
8076
+ jsxRuntime.jsx(material.TextField, { inputRef: inputRef, value: editDescription, onBlur: handleSaveDescription, onChange: handleChange, onKeyDown: handleKeyDown, multiline: true, fullWidth: true, variant: 'standard', InputProps: {
8077
+ disableUnderline: true,
8078
+ style: {
8079
+ fontFamily: 'PT Sans',
8080
+ fontSize: '14px',
8081
+ lineHeight: 1.3
8082
+ },
8083
+ }, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) })
8084
+ :
8085
+ jsxRuntime.jsx(Tooltip$2, { content: 'Clique na hipótese para ver as ações vinculadas', direction: 'bottom', wrapperWidth: '100%', style: {
8086
+ fontFamily: 'PT Sans',
8087
+ fontWeight: 400,
8088
+ fontSize: '14px',
8089
+ color: '#757575',
8090
+ width: '171px',
8091
+ height: '52px',
8092
+ top: '8px',
8093
+ left: '4px',
8094
+ whiteSpace: 'wrap',
8095
+ boxShadow: ' 0px 25px 18px -20px #22222233;',
8096
+ display: variant === 'impediment' || isEditing ? 'none' : 'block'
8097
+ }, children: jsxRuntime.jsx("div", { style: { width: '100%', overflow: 'hidden' }, children: editDescription }) }) }), !isEditing && hasVoting && (jsxRuntime.jsx(Voting, { voteText: voteText, type: type, onDeleteVote: onDeleteVote, votersList: votersList, onVote: () => onVote(id), onChangeVote: () => onChangeVote(id), isVotedByUserLogged: isVotedByUserLogged, voteHasAlreadyBeenRegistered: voteHasAlreadyBeenRegistered, popperStyle: popperStyle })), !isEditing && validHasEditHipotesisOrImpediment && (jsxRuntime.jsx(MenuMore, { options: options, isContainerOptions: true, closeAfterClick: true }))] })] }) }) }));
8088
8098
  };
8089
8099
 
8090
8100
  const ModalContainer = styled__default["default"].div `
@@ -1 +1 @@
1
- {"version":3,"file":"upDownButtons.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/hypotesisAndImpediment/UpDownButtons/upDownButtons.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAe/D,eAAO,MAAM,oBAAoB,mFAWhC,CAAA;AAED,eAAO,MAAM,WAAW,uEAWvB,CAAA"}
1
+ {"version":3,"file":"upDownButtons.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/hypotesisAndImpediment/UpDownButtons/upDownButtons.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAe/D,eAAO,MAAM,oBAAoB,mFAYhC,CAAA;AAED,eAAO,MAAM,WAAW,uEAavB,CAAA"}
@@ -19,5 +19,8 @@ export declare const Separator: import("styled-components").StyledComponent<"div
19
19
  variant: string;
20
20
  }, never>;
21
21
  export declare const Title: import("styled-components").StyledComponent<"span", any, {}, never>;
22
- export declare const Description: import("styled-components").StyledComponent<"span", any, {}, never>;
22
+ export declare const Description: import("styled-components").StyledComponent<"span", any, {
23
+ type: string;
24
+ variant: string;
25
+ }, never>;
23
26
  //# sourceMappingURL=hypothesisAndImpediment.style.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"hypothesisAndImpediment.style.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AA4B9D,eAAO,MAAM,YAAY;;;;;;;;;;;CAWxB,CAAA;AAED,eAAO,MAAM,aAAa,oEAMzB,CAAA;AAED,eAAO,MAAM,kBAAkB,mFAoB9B,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAMrC,CAAA;AAGD,eAAO,MAAM,SAAS;UAAsB,MAAM;aAAW,MAAM;SAWlE,CAAA;AACD,eAAO,MAAM,KAAK,qEAGjB,CAAA;AACD,eAAO,MAAM,WAAW,qEAMvB,CAAA"}
1
+ {"version":3,"file":"hypothesisAndImpediment.style.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AA4B9D,eAAO,MAAM,YAAY;;;;;;;;;;;CAWxB,CAAA;AAED,eAAO,MAAM,aAAa,oEAMzB,CAAA;AAED,eAAO,MAAM,kBAAkB,mFAgB9B,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAQrC,CAAA;AAGD,eAAO,MAAM,SAAS;UAAsB,MAAM;aAAW,MAAM;SAWlE,CAAA;AACD,eAAO,MAAM,KAAK,qEAGjB,CAAA;AACD,eAAO,MAAM,WAAW;UAAuB,MAAM;aAAW,MAAM;SAcrE,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/hypotesisAndImpediment/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,CAAA;AAU7E,eAAO,MAAM,uBAAuB,wbA+BjC,iCAAiC,4CAkPnC,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/hypotesisAndImpediment/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,CAAA;AAW7E,eAAO,MAAM,uBAAuB,wbA+BjC,iCAAiC,4CA0PnC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/impedimentosTab/index.tsx"],"names":[],"mappings":"AAUA,OAAO,EACH,oBAAoB,EAEvB,MAAM,mBAAmB,CAAA;AAa1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACpC,OAAO,EACP,QAAQ,EACR,aAAa,EACb,oBAAoB,EACpB,aAAa,EACb,aAAa,EACb,UAAU,EACb,EAAE,oBAAoB,2CAoQtB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/impedimentosTab/index.tsx"],"names":[],"mappings":"AAUA,OAAO,EACH,oBAAoB,EAEvB,MAAM,mBAAmB,CAAA;AAa1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACpC,OAAO,EACP,QAAQ,EACR,aAAa,EACb,oBAAoB,EACpB,aAAa,EACb,aAAa,EACb,UAAU,EACb,EAAE,oBAAoB,2CA0QtB"}
@@ -1 +1 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/impedimentosTab/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,oEAIjC,CAAA;AAED,eAAO,MAAM,UAAU,oEAItB,CAAA;AAED,eAAO,MAAM,GAAG;cAA4B,OAAO;SAmClD,CAAA;AAED,eAAO,MAAM,cAAc,oEAqB1B,CAAA;AAED,eAAO,MAAM,gBAAgB;kBAAgC,OAAO;SAsCnE,CAAA;AAED,eAAO,MAAM,wBAAwB;kBAAgC,OAAO;SA2B3E,CAAA;AAED,eAAO,MAAM,iBAAiB;kBAAgC,OAAO;SAepE,CAAA;AAED,eAAO,MAAM,eAAe,oEAG3B,CAAA;AAED,eAAO,MAAM,WAAW,oEAKvB,CAAA;AAED,eAAO,MAAM,WAAW;iBAA+B,MAAM;SAQ5D,CAAA"}
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/impedimentosTab/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,oEAIjC,CAAA;AAED,eAAO,MAAM,UAAU,oEAItB,CAAA;AAED,eAAO,MAAM,GAAG;cAA4B,OAAO;SAmClD,CAAA;AAED,eAAO,MAAM,cAAc,oEAkB1B,CAAA;AAED,eAAO,MAAM,gBAAgB;kBAAgC,OAAO;SAsCnE,CAAA;AAED,eAAO,MAAM,wBAAwB;kBAAgC,OAAO;SA2B3E,CAAA;AAED,eAAO,MAAM,iBAAiB;kBAAgC,OAAO;SAepE,CAAA;AAED,eAAO,MAAM,eAAe,oEAG3B,CAAA;AAED,eAAO,MAAM,WAAW,oEAKvB,CAAA;AAED,eAAO,MAAM,WAAW;iBAA+B,MAAM;SAQ5D,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,4CAsH3B,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,4CAsH3B,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,4CAkGb,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,4CAkGb,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/IJ/learningCycleCard/components/menu/index.tsx"],"names":[],"mappings":"AAUA,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE;;;CAAA,2CAiFnD"}
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,2CAiFnD"}
@@ -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":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table/parts/TableBody/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAY,UAAU,EAAE,MAAM,aAAa,CAAA;AAUlD,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,iBAAiB,EAAE,OAAO,EAAE,EAAE,UAAU,2CAiB/F"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table/parts/TableBody/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAY,UAAU,EAAE,MAAM,aAAa,CAAA;AAUlD,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,iBAAiB,EAAE,OAAO,EAAE,EAAE,UAAU,2CAiB/F"}
@@ -1 +1 @@
1
- {"version":3,"file":"tableStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table/parts/TableBody/tableStyle.ts"],"names":[],"mappings":"AAEA,UAAU,oBAAoB;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,cAAc,qFAI1B,CAAC;AAEF,eAAO,MAAM,gBAAgB,mEAM5B,CAAC;AAEF,eAAO,MAAM,qBAAqB,qFAMjC,CAAC;AAEF,eAAO,MAAM,8BAA8B,sFAI1C,CAAC;AAEF,eAAO,MAAM,WAAW,sFAUvB,CAAC;AAEF,UAAU,wBAAwB;IAChC,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,mBAAmB,0FAU/B,CAAC"}
1
+ {"version":3,"file":"tableStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table/parts/TableBody/tableStyle.ts"],"names":[],"mappings":"AAEA,UAAU,oBAAoB;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,cAAc,qFAI1B,CAAC;AAEF,eAAO,MAAM,gBAAgB,mEAM5B,CAAC;AAEF,eAAO,MAAM,qBAAqB,qFAMjC,CAAC;AAEF,eAAO,MAAM,8BAA8B,sFAI1C,CAAC;AAEF,eAAO,MAAM,WAAW,sFAUvB,CAAC;AAEF,UAAU,wBAAwB;IAChC,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,mBAAmB,0FAU/B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table/parts/TableHead/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,OAAO,EAAE,EAAE,UAAU,2CAmBxD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table/parts/TableHead/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,OAAO,EAAE,EAAE,UAAU,2CAmBxD"}
@@ -1 +1 @@
1
- {"version":3,"file":"tableStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table/parts/TableHead/tableStyle.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,eAAO,MAAM,WAAW,sEAEvB,CAAC;AAEF,eAAO,MAAM,UAAU,mEAEtB,CAAC;AAEF,eAAO,MAAM,iBAAiB,sFAW7B,CAAC"}
1
+ {"version":3,"file":"tableStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table/parts/TableHead/tableStyle.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,eAAO,MAAM,WAAW,sEAEvB,CAAC;AAEF,eAAO,MAAM,UAAU,mEAEtB,CAAC;AAEF,eAAO,MAAM,iBAAiB,sFAW7B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"collaboratorAvatarStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/CollaboratorAvatar/collaboratorAvatarStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,yBAAyB;;SASrC,CAAC"}
1
+ {"version":3,"file":"collaboratorAvatarStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/CollaboratorAvatar/collaboratorAvatarStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,yBAAyB;;SASrC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAI3D,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EAAE,GAAG,EAAE,aAAa,EAAE,qBAAqB,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAyClJ"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAI3D,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EAAE,GAAG,EAAE,aAAa,EAAE,qBAAqB,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAyClJ"}
@@ -1 +1 @@
1
- {"version":3,"file":"dateLimitStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.ts"],"names":[],"mappings":"AAEA,UAAU,kBAAkB;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,eAAO,MAAM,gBAAgB,oFAkB5B,CAAC"}
1
+ {"version":3,"file":"dateLimitStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.ts"],"names":[],"mappings":"AAEA,UAAU,kBAAkB;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,eAAO,MAAM,gBAAgB,oFAkB5B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/DateLimit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,UAAU,2CAE7D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/DateLimit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,UAAU,2CAE7D"}
@@ -1 +1 @@
1
- {"version":3,"file":"emptyStateStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/EmptyState/emptyStateStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,oEAY7B,CAAA;AAED,eAAO,MAAM,eAAe,oEAE3B,CAAA;AAED,eAAO,MAAM,eAAe,oEAY3B,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAuB9B,CAAA"}
1
+ {"version":3,"file":"emptyStateStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/EmptyState/emptyStateStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,oEAY7B,CAAA;AAED,eAAO,MAAM,eAAe,oEAE3B,CAAA;AAED,eAAO,MAAM,eAAe,oEAY3B,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAuB9B,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/EmptyState/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAI1C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,UAAU,EAAE,WAAW,EAAE,EAAE,WAAW,2CA2B1E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/EmptyState/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAI1C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,UAAU,EAAE,WAAW,EAAE,EAAE,WAAW,2CA2B1E"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/TagStatus/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,UAAU,2CAS9D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/TagStatus/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAGxC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,UAAU,2CAS9D"}
@@ -1 +1 @@
1
- {"version":3,"file":"tagStatusStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.ts"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,eAAO,MAAM,YAAY,oEAKxB,CAAA;AAED,eAAO,MAAM,UAAU,6EAqBtB,CAAC;AAEF,eAAO,MAAM,QAAQ,6EAapB,CAAC"}
1
+ {"version":3,"file":"tagStatusStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.ts"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,eAAO,MAAM,YAAY,oEAKxB,CAAA;AAED,eAAO,MAAM,UAAU,6EAqBtB,CAAC;AAEF,eAAO,MAAM,QAAQ,6EAapB,CAAC"}
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.89",
4
+ "version": "0.23.90",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",