frst-components 0.22.82 → 0.22.84

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
@@ -3082,6 +3082,7 @@ display: flex;
3082
3082
  align-items: center;
3083
3083
  justify-content: space-between;
3084
3084
  width:100%;
3085
+ color: #222222;
3085
3086
  `;
3086
3087
  const Container$l = styled__default["default"].div `
3087
3088
  width: 100%;
@@ -3092,19 +3093,20 @@ font-family: PT Sans;
3092
3093
  font-size:14px;
3093
3094
  border-radius:8px;
3094
3095
  padding: 0 0 0 16px;
3095
- height: 100%;
3096
3096
  min-height: 52px;
3097
3097
 
3098
- ${({ type }) => type === 'prioritize' && styled.css `
3099
- background: #FDAE15;
3100
- `}
3101
- ${({ type }) => type === 'raised' && styled.css `
3102
- background: #F8D784;
3103
-
3104
- `}
3105
- ${({ type }) => type === 'suggested' && styled.css `
3106
- background: #CDDAEF;
3107
- `}
3098
+ ${({ type }) => {
3099
+ switch (type) {
3100
+ case 'prioritize':
3101
+ return styled.css `background: #FDAE15;`;
3102
+ case 'raised':
3103
+ return styled.css `background: #F8D784;`;
3104
+ case 'suggested':
3105
+ return styled.css `background: #CDDAEF;`;
3106
+ default:
3107
+ return '';
3108
+ }
3109
+ }}
3108
3110
  `;
3109
3111
  const Title$6 = styled__default["default"].span `
3110
3112
  font-weight:700;
@@ -3126,15 +3128,7 @@ const SplitContainer = styled__default["default"].div `
3126
3128
  display:flex;
3127
3129
  justify-content: flex-start;
3128
3130
  align-items:center;
3129
- height: ${({ height }) => height ? `${height}px` : '100%'};
3130
- `;
3131
- const VoteMainContainer = styled__default["default"].div `
3132
- display: flex;
3133
- align-items: center;
3134
- justify-content: flex-start;
3135
- cursor: pointer;
3136
- height: ${({ height }) => height ? `${height}px` : '100%'};
3137
- width: 100%;
3131
+ height: 100%;
3138
3132
  `;
3139
3133
  styled__default["default"].div `
3140
3134
  display: flex;
@@ -3148,28 +3142,31 @@ styled__default["default"].div `
3148
3142
  const VoteButtonContainer = styled__default["default"].span `
3149
3143
  display: flex;
3150
3144
  align-items: center;
3151
- justify-content: flex-end;
3152
- width: 100%;
3145
+ justify-content: center;
3146
+ width: 150px;
3153
3147
  background: #F9CD5E;
3154
-
3155
-
3156
- ${({ type }) => type === 'prioritize' && styled.css `
3157
- background: #DC9100;
3158
- `}
3159
- ${({ type }) => type === 'raised' && styled.css `
3160
- background: #F9CD5E;
3161
-
3162
- `}
3163
- ${({ type }) => type === 'suggested' && styled.css `
3164
- background: #A5C3F2;
3148
+ cursor: pointer;
3149
+ ${({ height }) => height > 0 && styled.css `
3150
+ height: ${height}px;
3165
3151
  `}
3166
3152
 
3153
+ ${({ type }) => {
3154
+ switch (type) {
3155
+ case 'prioritize':
3156
+ return styled.css `background: #DC9100;`;
3157
+ case 'raised':
3158
+ return styled.css `background: #F9CD5E;`;
3159
+ case 'suggested':
3160
+ return styled.css `background: #A5C3F2;`;
3161
+ default:
3162
+ return '';
3163
+ }
3164
+ }}
3167
3165
  ${({ modeDelete }) => modeDelete && styled.css `
3168
3166
  background: inherit;
3169
3167
  `}
3170
3168
  border-radius:0 8px 8px 0;
3171
3169
  padding: 0 16px 0 16px;
3172
- height: 100%;
3173
3170
  min-height: 52px;
3174
3171
  margin-left: 4px;
3175
3172
 
@@ -3250,11 +3247,13 @@ gap: 10px;
3250
3247
  ${({ lastVote }) => lastVote === false && "border-bottom: solid 1px #ccc;"}
3251
3248
  `;
3252
3249
 
3253
- const HypothesisComponent = ({ description, type, id, title, votes = [], onVote, canVote = false, canViewVote = false, userLoggedId, deleteVote, canViewListVotes, votesSingularText, votesPluralText, voteText, deleteVoteText, handleViewProfile }) => {
3250
+ const HypothesisComponent = ({ description, type, id, title, votes = [], onVote, canVote = false, canViewVote = false, userLoggedId, deleteVote, canViewListVotes, votesSingularText, votesPluralText, voteText, deleteVoteText, handleViewProfile, avatar, showAvatar, authorId, hasVoteGoal }) => {
3254
3251
  const [isHover, seIsHover] = React.useState(false);
3255
- const [hasVote, setHasVote] = React.useState(votes?.some((vote) => vote?.user_uuid === userLoggedId));
3252
+ const [hasVoteHypothesis, setHasVoteHypothesis] = React.useState(votes?.some((vote) => vote?.user_uuid === userLoggedId));
3256
3253
  const [hypothesisVotes, setHypothesisVotes] = React.useState(votes);
3257
3254
  const [showVotesList, setShowVotesList] = React.useState(false);
3255
+ const ContainerRef = React.useRef(null);
3256
+ const [heightContainer, seHeightContainer] = React.useState(0);
3258
3257
  const toggleVotes = () => {
3259
3258
  setShowVotesList(!showVotesList);
3260
3259
  };
@@ -3272,18 +3271,25 @@ const HypothesisComponent = ({ description, type, id, title, votes = [], onVote,
3272
3271
  document.removeEventListener('mousedown', handleClickOutsideVote);
3273
3272
  };
3274
3273
  }, [setShowVotesList]);
3274
+ React.useEffect(() => {
3275
+ const Container = ContainerRef?.current;
3276
+ if (ContainerRef) {
3277
+ const height = Container.clientHeight;
3278
+ seHeightContainer(height);
3279
+ }
3280
+ }, [ContainerRef]);
3275
3281
  const handleVote = async (hyphoteseId) => {
3276
3282
  const vote = await onVote(hyphoteseId);
3277
3283
  if (vote?.status === 201) {
3278
3284
  let updateVotes = hypothesisVotes;
3279
- if (!updateVotes.some((vot) => vot?.id === vote?.data?.id)) {
3285
+ if (!updateVotes?.some((vot) => vot?.id === vote?.data?.id)) {
3280
3286
  updateVotes.push(vote.data);
3281
3287
  setHypothesisVotes(updateVotes);
3282
3288
  }
3283
- setHasVote(true);
3289
+ setHasVoteHypothesis(true);
3284
3290
  }
3285
3291
  if (vote?.status !== 201)
3286
- setHasVote(false);
3292
+ setHasVoteHypothesis(false);
3287
3293
  };
3288
3294
  const handleDeleteVote = async (voteId) => {
3289
3295
  const vote = await deleteVote(voteId);
@@ -3293,28 +3299,28 @@ const HypothesisComponent = ({ description, type, id, title, votes = [], onVote,
3293
3299
  const newArrayVotes = updateVotes.filter((vot) => vot.id !== voteId);
3294
3300
  setHypothesisVotes(newArrayVotes);
3295
3301
  }
3296
- setHasVote(false);
3302
+ setHasVoteHypothesis(false);
3297
3303
  }
3298
3304
  };
3299
- return (jsxRuntime.jsx(MainContainer, { children: jsxRuntime.jsxs(Container$l, { type: type, id: id, children: [jsxRuntime.jsxs(SplitContainer, { children: [jsxRuntime.jsx(Title$6, { children: title }), jsxRuntime.jsx(Separator, { children: "|" }), jsxRuntime.jsx(Description$3, { children: description })] }), !canVote && canViewVote && hypothesisVotes.length > 0 && (jsxRuntime.jsxs("div", { style: { position: 'relative' }, children: [jsxRuntime.jsx(SplitContainer, { children: jsxRuntime.jsx(VoteMainContainer, { children: jsxRuntime.jsx(VoteButtonContainer, { ref: viewVotesRef, style: { cursor: canViewListVotes ? 'pointer' : 'default' }, type: type, onClick: canViewListVotes ? toggleVotes : null, children: jsxRuntime.jsxs(VoteCount, { children: [jsxRuntime.jsxs(VoteContent, { children: [hypothesisVotes?.slice(0, 3)?.map((vote, index) => {
3300
- return (jsxRuntime.jsx(ImageContent$1, { style: { zIndex: 14 - index }, children: jsxRuntime.jsx("img", { src: vote?.user?.avatar || 'https://cdn-images.frstfalconi.cloud/path582.svg' }) }, vote?.id));
3301
- }), hypothesisVotes?.length > 3 && (jsxRuntime.jsx(ImageContent$1, { style: { background: '#444444' }, children: jsxRuntime.jsxs("p", { style: {
3302
- fontSize: hypothesisVotes?.length > 9 ? 10 : hypothesisVotes?.length > 99 ? 8 : 14
3303
- }, children: ["+", hypothesisVotes?.length - 3] }) }))] }), hypothesisVotes?.length, " ", hypothesisVotes?.length > 1 ? votesPluralText : votesSingularText] }) }) }) }), jsxRuntime.jsx(VoteList, { hypothesisVotes: votes, showVotes: showVotesList, viewProfile: handleViewProfile })] })), canVote && (jsxRuntime.jsx(SplitContainer, { children: jsxRuntime.jsx(VoteMainContainer, { children: jsxRuntime.jsx(VoteButtonContainer, { type: type, modeDelete: isHover, onMouseEnter: () => seIsHover(true), onMouseLeave: () => seIsHover(false), children: hasVote ? (isHover ? (jsxRuntime.jsxs("div", { style: {
3304
- display: 'flex',
3305
- alignItems: 'center',
3306
- gap: '4px',
3307
- width: 'auto',
3308
- justifyContent: 'end'
3309
- }, onClick: () => handleDeleteVote(hypothesisVotes.find((vote) => vote.user_uuid === userLoggedId).id), children: [jsxRuntime.jsx(ExcludeVoteIcon, { width: "24", height: "24" }), jsxRuntime.jsx(VoteButton, { children: deleteVoteText })] })) : (jsxRuntime.jsxs(VoteCount, { children: [jsxRuntime.jsxs(VoteContent, { children: [hypothesisVotes?.slice(0, 3)?.map((vote, index) => {
3310
- return (jsxRuntime.jsx(ImageContent$1, { style: { zIndex: 14 - index }, children: jsxRuntime.jsx("img", { src: vote?.user?.avatar || 'https://cdn-images.frstfalconi.cloud/path582.svg' }) }, vote?.id));
3311
- }), hypothesisVotes.length > 3 && (jsxRuntime.jsx(ImageContent$1, { style: { background: '#444444' }, children: jsxRuntime.jsxs("p", { children: ["+", hypothesisVotes?.length - 3] }) }))] }), jsxRuntime.jsxs("p", { children: [hypothesisVotes?.length, " ", hypothesisVotes?.length > 1 ? votesPluralText : votesSingularText] })] }))) : (jsxRuntime.jsxs("div", { style: {
3312
- display: 'flex',
3313
- alignItems: 'center',
3314
- justifyContent: 'space-around',
3315
- paddingLeft: '4px',
3316
- height: '100%'
3317
- }, onClick: () => handleVote(id), children: [jsxRuntime.jsx(VoteIcon, { width: "24", height: "24", style: { marginLeft: '4px', marginRight: '4px' } }), jsxRuntime.jsx(VoteButton, { children: voteText })] })) }) }) }))] }) }));
3305
+ return (jsxRuntime.jsx(MainContainer, { children: jsxRuntime.jsxs(Container$l, { type: type, id: id, ref: ContainerRef, children: [jsxRuntime.jsxs(SplitContainer, { children: [showAvatar && (jsxRuntime.jsx(Avatar, { src: avatar, size: "24px", style: { marginRight: '8px', cursor: authorId ? 'pointer' : 'default' }, onClick: () => handleViewProfile(authorId) })), jsxRuntime.jsx(Title$6, { children: title }), jsxRuntime.jsx(Separator, { children: "|" }), jsxRuntime.jsx(Description$3, { children: description })] }), ((!canVote && canViewVote && hypothesisVotes?.length > 0) ||
3306
+ (canVote && hasVoteGoal && hypothesisVotes?.length > 0)) && (jsxRuntime.jsxs("div", { style: { position: 'relative', height: '100%' }, children: [jsxRuntime.jsx(SplitContainer, { children: jsxRuntime.jsx(VoteButtonContainer, { ref: viewVotesRef, height: heightContainer, style: { cursor: canViewListVotes ? 'pointer' : 'default' }, type: type, onClick: canViewListVotes ? toggleVotes : null, children: jsxRuntime.jsxs(VoteCount, { children: [jsxRuntime.jsxs(VoteContent, { children: [hypothesisVotes?.slice(0, 2)?.map((vote, index) => {
3307
+ return (jsxRuntime.jsx(ImageContent$1, { style: { zIndex: 14 - index }, children: jsxRuntime.jsx("img", { src: vote?.user?.avatar || 'https://cdn-images.frstfalconi.cloud/path582.svg' }) }, vote?.id));
3308
+ }), hypothesisVotes?.length > 2 && (jsxRuntime.jsx(ImageContent$1, { style: { background: '#444444' }, children: jsxRuntime.jsxs("p", { style: {
3309
+ fontSize: hypothesisVotes?.length > 9 ? 10 : hypothesisVotes?.length > 99 ? 8 : 14
3310
+ }, children: ["+", hypothesisVotes?.length - 2] }) }))] }), hypothesisVotes?.length, " ", hypothesisVotes?.length > 1 ? votesPluralText : votesSingularText] }) }) }), jsxRuntime.jsx(VoteList, { hypothesisVotes: votes, showVotes: showVotesList, viewProfile: handleViewProfile })] })), canVote && !hasVoteGoal && (jsxRuntime.jsx(SplitContainer, { children: jsxRuntime.jsx(VoteButtonContainer, { type: type, modeDelete: isHover, height: heightContainer, onMouseEnter: () => seIsHover(true), onMouseLeave: () => seIsHover(false), children: hasVoteHypothesis ? (isHover ? (jsxRuntime.jsxs("div", { style: {
3311
+ display: 'flex',
3312
+ alignItems: 'center',
3313
+ gap: '4px',
3314
+ justifyContent: 'center'
3315
+ }, onClick: () => handleDeleteVote(hypothesisVotes?.find((vote) => vote?.user_uuid === userLoggedId)?.id), children: [jsxRuntime.jsx(ExcludeVoteIcon, { width: "24", height: "24" }), jsxRuntime.jsx(VoteButton, { children: deleteVoteText })] })) : (jsxRuntime.jsxs(VoteCount, { children: [jsxRuntime.jsxs(VoteContent, { children: [hypothesisVotes?.slice(0, 2)?.map((vote, index) => {
3316
+ return (jsxRuntime.jsx(ImageContent$1, { style: { zIndex: 14 - index }, children: jsxRuntime.jsx("img", { src: vote?.user?.avatar || 'https://cdn-images.frstfalconi.cloud/path582.svg' }) }, vote?.id));
3317
+ }), hypothesisVotes.length > 2 && (jsxRuntime.jsx(ImageContent$1, { style: { background: '#444444' }, children: jsxRuntime.jsxs("p", { children: ["+", hypothesisVotes?.length - 2] }) }))] }), jsxRuntime.jsxs("p", { children: [hypothesisVotes?.length, " ", hypothesisVotes?.length > 1 ? votesPluralText : votesSingularText] })] }))) : (jsxRuntime.jsxs("div", { style: {
3318
+ display: 'flex',
3319
+ alignItems: 'center',
3320
+ justifyContent: 'center',
3321
+ paddingLeft: '4px',
3322
+ height: '100%'
3323
+ }, onClick: () => handleVote(id), children: [jsxRuntime.jsx(VoteIcon, { width: "24", height: "24", style: { marginLeft: '4px', marginRight: '4px' } }), jsxRuntime.jsx(VoteButton, { children: voteText })] })) }) }))] }) }));
3318
3324
  };
3319
3325
  const VoteList = ({ hypothesisVotes, showVotes, viewProfile }) => {
3320
3326
  const sortedVotes = [...hypothesisVotes].sort((a, b) => a.user.name.localeCompare(b.user.name));
@@ -4265,7 +4271,7 @@ function InputComment$1({ placeholder, onChange, limit, users, showCharacterCoun
4265
4271
  }, "data-text": "enter", suppressContentEditableWarning: true, children: jsxRuntime.jsx("p", { children: jsxRuntime.jsx("br", {}) }) }), jsxRuntime.jsx(InputPlaceholder, { style: { display: 'none' }, contentEditable: true, ref: divPlaceholder, children: placeholder }), showMention && users && users.length > 0 && (jsxRuntime.jsx(Mentions, { users: users, top: mentionTopPosition, onSelect: (user) => {
4266
4272
  setShowMention(false);
4267
4273
  handleMentionUser(user);
4268
- } }))] }), jsxRuntime.jsx(HelperContainer, { children: !isPlaceholder ? (jsxRuntime.jsxs(HelperText$2, { isInputLimit: styleLimitExceeded, children: [textLength, "/", limit] })) : (jsxRuntime.jsx(jsxRuntime.Fragment, {})) }), styleLimitExceeded && (jsxRuntime.jsxs(LimitCharsContainer, { children: [jsxRuntime.jsx(TagAlert, {}), jsxRuntime.jsx(LimitCharsExceededMessage, { children: limitMessageExceeded })] }))] }) }));
4274
+ } }))] }), jsxRuntime.jsx(HelperContainer, { children: !isPlaceholder && showCharacterCounter && (jsxRuntime.jsxs(HelperText$2, { isInputLimit: styleLimitExceeded, children: [textLength, "/", limit] })) }), styleLimitExceeded && (jsxRuntime.jsxs(LimitCharsContainer, { children: [jsxRuntime.jsx(TagAlert, {}), jsxRuntime.jsx(LimitCharsExceededMessage, { children: limitMessageExceeded })] }))] }) }));
4269
4275
  }
4270
4276
 
4271
4277
  const HeaderWrapper$1 = styled__default["default"].div `
@@ -6,17 +6,13 @@ export declare const Title: import("styled-components").StyledComponent<"span",
6
6
  export declare const Index: import("styled-components").StyledComponent<"span", any, {}, never>;
7
7
  export declare const Separator: import("styled-components").StyledComponent<"div", any, {}, never>;
8
8
  export declare const Description: import("styled-components").StyledComponent<"span", any, {}, never>;
9
- export declare const SplitContainer: import("styled-components").StyledComponent<"div", any, {
10
- height?: number;
11
- }, never>;
12
- export declare const VoteMainContainer: import("styled-components").StyledComponent<"div", any, {
13
- height?: number;
14
- }, never>;
9
+ export declare const SplitContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
15
10
  export declare const VoteAvatarsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
16
11
  export declare const VoteAvatar: import("styled-components").StyledComponent<"div", any, {}, never>;
17
12
  export declare const VoteButtonContainer: import("styled-components").StyledComponent<"span", any, {
18
13
  type?: string;
19
14
  modeDelete?: boolean;
15
+ height?: number;
20
16
  }, never>;
21
17
  export declare const VoteCount: import("styled-components").StyledComponent<"span", any, {}, never>;
22
18
  export declare const VoteButton: import("styled-components").StyledComponent<"p", any, {}, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"hypothesisComponent.style.d.ts","sourceRoot":"","sources":["../../../../src/components/hypothesisComponent/hypothesisComponent.style.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,oEAKzB,CAAA;AACD,eAAO,MAAM,SAAS;UAAsB,MAAM;SAsBjD,CAAC;AAEF,eAAO,MAAM,KAAK,qEAGjB,CAAC;AAEF,eAAO,MAAM,KAAK,qEAEjB,CAAC;AAEF,eAAO,MAAM,SAAS,oEAGrB,CAAC;AAEF,eAAO,MAAM,WAAW,qEAIvB,CAAC;AACF,eAAO,MAAM,cAAc;aAAyB,MAAM;SAKzD,CAAA;AACD,eAAO,MAAM,iBAAiB;aAAyB,MAAM;SAO5D,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAKhC,CAAA;AAED,eAAO,MAAM,UAAU,oEAEtB,CAAA;AAED,eAAO,MAAM,mBAAmB;WAAwB,MAAM;iBAAe,OAAO;SA4BnF,CAAA;AACD,eAAO,MAAM,SAAS,qEAOrB,CAAA;AACD,eAAO,MAAM,UAAU,kEActB,CAAA;AACD,eAAO,MAAM,WAAW,oEASvB,CAAA;AACD,eAAO,MAAM,YAAY,oEAexB,CAAA;AAED,eAAO,MAAM,iBAAiB;gBAA4B,OAAO;SAiBhE,CAAA;AAED,eAAO,MAAM,YAAY;eAA2B,OAAO;SAO1D,CAAA"}
1
+ {"version":3,"file":"hypothesisComponent.style.d.ts","sourceRoot":"","sources":["../../../../src/components/hypothesisComponent/hypothesisComponent.style.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,oEAMzB,CAAA;AACD,eAAO,MAAM,SAAS;UAAsB,MAAM;SAuBjD,CAAC;AAEF,eAAO,MAAM,KAAK,qEAGjB,CAAC;AAEF,eAAO,MAAM,KAAK,qEAEjB,CAAC;AAEF,eAAO,MAAM,SAAS,oEAGrB,CAAC;AAEF,eAAO,MAAM,WAAW,qEAIvB,CAAC;AACF,eAAO,MAAM,cAAc,oEAK1B,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAKhC,CAAA;AAED,eAAO,MAAM,UAAU,oEAEtB,CAAA;AAED,eAAO,MAAM,mBAAmB;WAAwB,MAAM;iBAAe,OAAO;aAAW,MAAM;SA+BpG,CAAA;AACD,eAAO,MAAM,SAAS,qEAOrB,CAAA;AACD,eAAO,MAAM,UAAU,kEActB,CAAA;AACD,eAAO,MAAM,WAAW,oEASvB,CAAA;AACD,eAAO,MAAM,YAAY,oEAexB,CAAA;AAED,eAAO,MAAM,iBAAiB;gBAA4B,OAAO;SAiBhE,CAAA;AAED,eAAO,MAAM,YAAY;eAA2B,OAAO;SAO1D,CAAA"}
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { Vote } from './types';
3
- export declare const HypothesisComponent: ({ description, type, id, title, votes, onVote, canVote, canViewVote, userLoggedId, deleteVote, canViewListVotes, votesSingularText, votesPluralText, voteText, deleteVoteText, handleViewProfile }: {
3
+ export declare const HypothesisComponent: ({ description, type, id, title, votes, onVote, canVote, canViewVote, userLoggedId, deleteVote, canViewListVotes, votesSingularText, votesPluralText, voteText, deleteVoteText, handleViewProfile, avatar, showAvatar, authorId, hasVoteGoal }: {
4
4
  description: string;
5
5
  type: string;
6
6
  id: string;
@@ -13,9 +13,13 @@ export declare const HypothesisComponent: ({ description, type, id, title, votes
13
13
  canVote?: boolean;
14
14
  canViewListVotes?: boolean;
15
15
  canViewVote?: boolean;
16
+ hasVoteGoal?: boolean;
16
17
  votesSingularText?: string;
17
18
  votesPluralText?: string;
18
19
  voteText?: string;
19
20
  deleteVoteText?: string;
21
+ avatar?: string;
22
+ showAvatar?: boolean;
23
+ authorId?: string;
20
24
  }) => JSX.Element;
21
25
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/hypothesisComponent/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAI9B,eAAO,MAAM,mBAAmB;iBAkBjB,MAAM;UACb,MAAM;QACR,MAAM;WACH,MAAM;WACN,IAAI,EAAE;kBACC,MAAM;2BACG,MAAM,KAAK,GAAG;0BACf,MAAM,KAAK,GAAG;iCACP,MAAM,KAAK,GAAG;cACjC,OAAO;uBACE,OAAO;kBACZ,OAAO;wBACD,MAAM;sBACR,MAAM;eACb,MAAM;qBACA,MAAM;iBA2KxB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/hypothesisComponent/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAI9B,eAAO,MAAM,mBAAmB;iBAsBjB,MAAM;UACb,MAAM;QACR,MAAM;WACH,MAAM;WACN,IAAI,EAAE;kBACC,MAAM;2BACG,MAAM,KAAK,GAAG;0BACf,MAAM,KAAK,GAAG;iCACP,MAAM,KAAK,GAAG;cACjC,OAAO;uBACE,OAAO;kBACZ,OAAO;kBACP,OAAO;wBACD,MAAM;sBACR,MAAM;eACb,MAAM;qBACA,MAAM;aACd,MAAM;iBACF,OAAO;eACT,MAAM;iBA0LlB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAGhC,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAOvC,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,WAAW,EACX,QAAQ,EACR,KAAK,EACL,KAAK,EACL,oBAAoB,EACpB,MAAM,EACN,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,QAAQ,EACR,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACpB,WAAW,EACZ,EAAE,aAAa,eA2Ef"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-comment/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAGhC,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAOvC,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,WAAW,EACX,QAAQ,EACR,KAAK,EACL,KAAK,EACL,oBAAoB,EACpB,MAAM,EACN,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,QAAQ,EACR,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACpB,WAAW,EACZ,EAAE,aAAa,eA8Ef"}
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.22.82",
4
+ "version": "0.22.84",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",