frst-components 0.23.90 → 0.23.92

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
@@ -7343,22 +7343,32 @@ const TabInfoWrapper = styled__default["default"]('div') `
7343
7343
 
7344
7344
  `;
7345
7345
  const WrapperAddButton = styled__default["default"]('div') `
7346
- padding: 4px;
7347
- width: 24px;
7348
- height: 24px;
7349
- border-radius: 50%;
7350
- margin-left: 16px;
7346
+ border-radius: 6px;
7347
+ display: flex;
7348
+ align-items: center;
7349
+ gap: 8px;
7350
+ padding: 8px;
7351
+ cursor: pointer;
7352
+
7353
+ p {
7354
+ font-family: 'PT Sans';
7355
+ font-size: 16px;
7356
+ line-height: 1.1;
7357
+ font-weight: 700;
7358
+ color: #8E0EC8;
7359
+ }
7351
7360
 
7352
7361
  ${(props) => props.activeButton &&
7353
7362
  styled.css `
7354
- background-color: ${({ theme }) => theme.colors.neutralsGrey6};
7363
+ color: #7C0EAF;
7355
7364
  `}
7356
7365
 
7357
7366
  :hover {
7358
7367
  background-color: ${({ theme }) => theme.colors.neutralsGrey8};
7368
+ color: #7C0EAF;
7359
7369
 
7360
7370
  svg path {
7361
- stroke: ${({ theme }) => theme.colors.neutralsGrey1};
7371
+ stroke: #7C0EAF;
7362
7372
  }
7363
7373
  }
7364
7374
 
@@ -7369,11 +7379,11 @@ const WrapperAddButton = styled__default["default"]('div') `
7369
7379
  path {
7370
7380
  ${(props) => props.activeButton ?
7371
7381
  styled.css `
7372
- stroke: ${({ theme }) => theme.colors.neutralsGrey1};
7382
+ stroke: #7C0EAF;
7373
7383
  `
7374
7384
  :
7375
7385
  styled.css `
7376
- stroke: ${({ theme }) => theme.colors.neutralsGrey4};
7386
+ stroke: #8E0EC8;
7377
7387
  `}
7378
7388
  }
7379
7389
  }
@@ -7388,17 +7398,18 @@ const WrapperImpedimentoSelect = styled__default["default"]('div') `
7388
7398
  background-color: ${({ theme }) => theme.colors.shadeWhite};
7389
7399
  cursor: default;
7390
7400
 
7391
- ${(props) => props.activeSelect &&
7392
- styled.css `
7393
- background-color: ${({ theme }) => theme.colors.neutralsGrey6};
7394
- `}
7395
-
7396
7401
  p {
7397
7402
  font-family: 'PT Sans';
7398
7403
  font-size: 16px;
7399
7404
  line-height: 1.1;
7400
- font-weight: 700;
7401
- color: ${({ theme }) => theme.colors.neutralsGrey2};
7405
+ font-weight: 400;
7406
+ color: ${({ theme }) => theme.colors.neutralsGrey1};
7407
+
7408
+ ${(props) => props.activeSelect &&
7409
+ styled.css `
7410
+ font-weight: 700;
7411
+ color: ${({ theme }) => theme.colors.neutralsGrey2};
7412
+ `}
7402
7413
  }
7403
7414
 
7404
7415
  :hover {
@@ -7479,6 +7490,7 @@ const ContainerDropdown = styled__default["default"]('div') `
7479
7490
  border-radius: 8px;
7480
7491
  box-shadow: 0px 5px 15px 0px #00000040;
7481
7492
  background-color: #FFFFFF;
7493
+ width: 300px;
7482
7494
  `;
7483
7495
  const DropdownRow = styled__default["default"]('div') `
7484
7496
  padding: 10px 4px;
@@ -7490,6 +7502,10 @@ const DropdownRow = styled__default["default"]('div') `
7490
7502
  font-size: 16px;
7491
7503
  line-height: 1.1;
7492
7504
  font-weight: 400;
7505
+ color: ${({ theme }) => theme.colors.neutralsGrey1};
7506
+ white-space: nowrap;
7507
+ text-overflow: ellipsis;
7508
+ overflow: hidden
7493
7509
  }
7494
7510
 
7495
7511
  :first-child {
@@ -7505,7 +7521,7 @@ const DropdownRow = styled__default["default"]('div') `
7505
7521
  function Dropdown$1({ isOpen, anchor, onClose, impedimentoList, onClickImpedimento }) {
7506
7522
  const render = () => {
7507
7523
  return (impedimentoList.map((item, index) => {
7508
- return (jsxRuntime.jsx(DropdownRow, { onClick: () => onClickImpedimento(item), children: jsxRuntime.jsx("p", { children: item.title }) }, index));
7524
+ return (jsxRuntime.jsx(DropdownRow, { onClick: () => onClickImpedimento(item), children: jsxRuntime.jsxs("p", { children: [item.title, ": ", item.description] }) }, index));
7509
7525
  }));
7510
7526
  };
7511
7527
  return (jsxRuntime.jsx(material.Popover, { open: isOpen, onClose: onClose, anchorEl: anchor, anchorOrigin: {
@@ -7517,7 +7533,7 @@ function Dropdown$1({ isOpen, anchor, onClose, impedimentoList, onClickImpedimen
7517
7533
  }, children: jsxRuntime.jsx(ContainerDropdown, { children: render() }) }));
7518
7534
  }
7519
7535
 
7520
- function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab }) {
7536
+ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab, addButtonText }) {
7521
7537
  const [selectedTab, setSelectedTab] = React.useState(null);
7522
7538
  const [allTabs, setAllTabs] = React.useState([]);
7523
7539
  const [onShowTabs, setOnShowTabs] = React.useState([]);
@@ -7530,9 +7546,7 @@ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpediment
7530
7546
  const openAddImpedimento = Boolean(addImpedimentoAnchor);
7531
7547
  const openImpedimentoSelect = Boolean(impedimentoSelectAnchor);
7532
7548
  React.useEffect(() => {
7533
- if (tabsList.length !== allTabs.length) {
7534
- setAllTabs(tabsList);
7535
- }
7549
+ setAllTabs(tabsList);
7536
7550
  }, [tabsList]);
7537
7551
  React.useEffect(() => {
7538
7552
  if (idSelectedTab) {
@@ -7603,56 +7617,67 @@ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpediment
7603
7617
  }
7604
7618
  }, [selectedTab]);
7605
7619
  return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: allTabs.length > 0 ?
7606
- jsxRuntime.jsxs(ContainerImpedimentos, { children: [jsxRuntime.jsxs(TabWrapper, { children: [jsxRuntime.jsxs(material.Box, { display: 'flex', alignItems: 'center', children: [onShowTabs.map((item, index) => renderTabs(item, index)), showAddButton ?
7607
- jsxRuntime.jsx(Tooltip$2, { content: 'Sugerir impedimento', direction: 'bottom', delay: 200, style: { textAlign: 'center' }, children: jsxRuntime.jsx(WrapperAddButton, { activeButton: openAddImpedimento, onClick: handleClickAddImpedimento, children: jsxRuntime.jsx(AddIcon, {}) }) })
7620
+ jsxRuntime.jsxs(ContainerImpedimentos, { children: [jsxRuntime.jsxs(TabWrapper, { children: [jsxRuntime.jsxs(material.Box, { display: 'flex', alignItems: 'center', children: [onShowTabs.map((item, index) => renderTabs(item, index)), onHideTabs.length > 0 ?
7621
+ jsxRuntime.jsx(Tooltip$2, { content: 'Ver todos os impedimentos', direction: 'bottom', delay: 200, style: { textAlign: 'center' }, children: jsxRuntime.jsxs(WrapperImpedimentoSelect, { activeSelect: openImpedimentoSelect, onClick: (e) => setImpedimentoSelectAnchor(e.currentTarget), children: [jsxRuntime.jsxs("p", { children: ["Mais ", onHideTabs.length] }), jsxRuntime.jsx(WrapperSelectIcon, { isOpenSelect: openImpedimentoSelect, children: jsxRuntime.jsx(ArrrowExpandDropdown, {}) })] }) })
7608
7622
  :
7609
- jsxRuntime.jsx(jsxRuntime.Fragment, {})] }), jsxRuntime.jsx(material.Box, { display: 'flex', alignItems: 'center', children: onHideTabs.length > 0 ?
7610
- jsxRuntime.jsx(Tooltip$2, { content: 'Ver todos os impedimentos', direction: 'bottom', delay: 200, style: { textAlign: 'center' }, children: jsxRuntime.jsxs(WrapperImpedimentoSelect, { activeSelect: openImpedimentoSelect, onClick: (e) => setImpedimentoSelectAnchor(e.currentTarget), children: [jsxRuntime.jsxs("p", { children: ["Mais ", onHideTabs.length] }), jsxRuntime.jsx(WrapperSelectIcon, { isOpenSelect: openImpedimentoSelect, children: jsxRuntime.jsx(ArrrowExpandDropdown, {}) })] }) })
7623
+ jsxRuntime.jsx(jsxRuntime.Fragment, {})] }), jsxRuntime.jsx(material.Box, { display: 'flex', alignItems: 'center', children: showAddButton ?
7624
+ jsxRuntime.jsx(Tooltip$2, { content: 'Sugerir impedimento', direction: 'bottom', delay: 200, style: { textAlign: 'center' }, children: jsxRuntime.jsxs(WrapperAddButton, { activeButton: openAddImpedimento, onClick: handleClickAddImpedimento, children: [jsxRuntime.jsx(AddIcon, {}), jsxRuntime.jsx("p", { children: addButtonText })] }) })
7611
7625
  :
7612
7626
  jsxRuntime.jsx(jsxRuntime.Fragment, {}) })] }), selectedTab?.id ?
7613
- jsxRuntime.jsx(material.Box, { display: 'flex', flexDirection: 'column', gap: '8px', onDoubleClick: () => selectedTab?.showOptions && setIsEdit(true), children: jsxRuntime.jsxs(TabInfoWrapper, { children: [jsxRuntime.jsx(Tooltip$2, { content: selectedTab?.user_name, direction: 'bottom', delay: 200, style: { width: 'fit-content', height: 'fit-content' }, children: selectedTab.isGoalOwner ?
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 }) })
7615
- :
7616
- jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true, onClick: selectedTab?.handleClickAvatar }) }), isEdit ?
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: {
7618
- disableUnderline: true,
7619
- style: {
7620
- fontFamily: 'PT Sans',
7621
- fontSize: '14px',
7622
- lineHeight: 1.3
7623
- }
7624
- }, inputRef: (input) => input && input.focus(), onKeyDown: (event) => {
7625
- if (event.key === 'Enter') {
7626
- handleUpdate();
7627
- }
7628
- if (event.key === 'Escape') {
7629
- handleCancelUpdate();
7630
- }
7631
- }, onBlur: handleUpdate, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) }) })
7627
+ jsxRuntime.jsxs(TabInfoWrapper, { onDoubleClick: () => selectedTab?.showOptions && setIsEdit(true), children: [jsxRuntime.jsx(Tooltip$2, { content: selectedTab?.user_name, direction: 'bottom', delay: 200, style: {
7628
+ fontFamily: 'PT Sans',
7629
+ fontWeight: 400,
7630
+ fontSize: '14px',
7631
+ color: 'rgba(117, 117, 117, 1)',
7632
+ width: 'fit-content',
7633
+ height: '31px',
7634
+ top: '8px',
7635
+ left: '4px',
7636
+ whiteSpace: 'nowrap',
7637
+ boxShadow: ' 0px 0px 18px 0px rgba(34, 34, 34, 0.2)'
7638
+ }, children: selectedTab.isGoalOwner ?
7639
+ jsxRuntime.jsx(material.Box, { border: '2px solid #AD46FF', borderRadius: '50%', onClick: selectedTab?.handleClickAvatar, children: jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true }) })
7632
7640
  :
7633
- jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("p", { children: displayDescription }), selectedTab?.showOptions ?
7634
- jsxRuntime.jsx(WrapperMenuMore, { children: jsxRuntime.jsx(MenuMore, { options: [
7635
- ...(selectedTab?.handlePriorize ? [{
7636
- description: 'Priorizar',
7637
- onClick: () => selectedTab?.handlePriorize(selectedTab),
7638
- disabled: !!selectedTab?.disabledPriorize,
7639
- color: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222",
7640
- startIcon: jsxRuntime.jsx(StarPrioritize, { stroke: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222" })
7641
- }] : []),
7642
- ...(selectedTab?.handleEdit ? [{
7643
- description: 'Editar',
7644
- onClick: () => setIsEdit(true),
7645
- startIcon: jsxRuntime.jsx(EditHipoteses, {})
7646
- }] : []),
7647
- ...(selectedTab?.handleDelete ? [{
7648
- description: 'Excluir',
7649
- onClick: () => selectedTab?.handleDelete(selectedTab),
7650
- startIcon: jsxRuntime.jsx(TrashHipoteses, {}),
7651
- color: '#C00F00'
7652
- }] : []),
7653
- ], closeAfterClick: true, isContainerOptions: true }) })
7654
- :
7655
- jsxRuntime.jsx(jsxRuntime.Fragment, {})] })] }) })
7641
+ jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true, onClick: selectedTab?.handleClickAvatar }) }), isEdit ?
7642
+ 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: {
7643
+ disableUnderline: true,
7644
+ style: {
7645
+ fontFamily: 'PT Sans',
7646
+ fontSize: '14px',
7647
+ lineHeight: 1.3
7648
+ }
7649
+ }, inputRef: (input) => input && input.focus(), onKeyDown: (event) => {
7650
+ if (event.key === 'Enter') {
7651
+ handleUpdate();
7652
+ }
7653
+ if (event.key === 'Escape') {
7654
+ handleCancelUpdate();
7655
+ }
7656
+ }, onBlur: handleUpdate, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) }) })
7657
+ :
7658
+ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("p", { children: displayDescription }), selectedTab?.showOptions ?
7659
+ jsxRuntime.jsx(WrapperMenuMore, { children: jsxRuntime.jsx(MenuMore, { options: [
7660
+ ...(selectedTab?.handlePriorize ? [{
7661
+ description: 'Priorizar',
7662
+ onClick: () => selectedTab?.handlePriorize(selectedTab),
7663
+ disabled: !!selectedTab?.disabledPriorize,
7664
+ color: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222",
7665
+ startIcon: jsxRuntime.jsx(StarPrioritize, { stroke: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222" })
7666
+ }] : []),
7667
+ ...(selectedTab?.handleEdit ? [{
7668
+ description: 'Editar',
7669
+ onClick: () => setIsEdit(true),
7670
+ startIcon: jsxRuntime.jsx(EditHipoteses, {})
7671
+ }] : []),
7672
+ ...(selectedTab?.handleDelete ? [{
7673
+ description: 'Excluir',
7674
+ onClick: () => selectedTab?.handleDelete(selectedTab),
7675
+ startIcon: jsxRuntime.jsx(TrashHipoteses, {}),
7676
+ color: '#C00F00'
7677
+ }] : []),
7678
+ ], closeAfterClick: true, isContainerOptions: true }) })
7679
+ :
7680
+ jsxRuntime.jsx(jsxRuntime.Fragment, {})] })] })
7656
7681
  :
7657
7682
  jsxRuntime.jsx(jsxRuntime.Fragment, {}), jsxRuntime.jsx(AddImpedimentoModal, { isOpen: openAddImpedimento, anchor: addImpedimentoAnchor, onClose: () => setAddImpedimentoAnchor(null), onSaveBtn: handleSaveNewImpedimento }), jsxRuntime.jsx(Dropdown$1, { isOpen: openImpedimentoSelect, anchor: impedimentoSelectAnchor, onClose: () => setImpedimentoSelectAnchor(null), impedimentoList: onHideTabs, maxTabs: maxTabs, onClickImpedimento: handleClickSelectImpedimento })] })
7658
7683
  :
@@ -7700,17 +7725,17 @@ const MainContainer = styled__default["default"].div `
7700
7725
  align-items: center;
7701
7726
  justify-content: space-between;
7702
7727
  width: 100%;
7728
+ min-height: 56px;
7703
7729
  color: #222222;
7730
+ box-sizing: border-box;
7704
7731
  `;
7705
7732
  const ContainerHypotheis = styled__default["default"].div `
7706
7733
  width: 100%;
7707
7734
  display: flex;
7708
- /* align-items: center; */
7709
7735
  justify-content: space-between;
7710
7736
  font-family: PT Sans;
7711
7737
  font-size: 14px;
7712
7738
  border-radius: 8px;
7713
- min-height: 52px;
7714
7739
 
7715
7740
  ${({ type, variant }) => {
7716
7741
  const backgroundColor = backgroundColors$2[variant][type];
@@ -7723,7 +7748,7 @@ const SplitContainerDescription = styled__default["default"].div `
7723
7748
  display: flex;
7724
7749
  justify-content: flex-start;
7725
7750
  align-items: center;
7726
- padding: 16px 16px 16px 0px;
7751
+ padding: 10px 16px 10px 0px;
7727
7752
  gap: 16px;
7728
7753
  height: 100%;
7729
7754
  width: 100%;
@@ -7750,7 +7775,7 @@ const Description$4 = styled__default["default"].span `
7750
7775
  flex-grow: 1;
7751
7776
  flex-wrap: wrap;
7752
7777
  align-items: center;
7753
- padding: 0px 16px 0px 16px;
7778
+ padding: 6px 16px 6px 16px;
7754
7779
 
7755
7780
  ${({ type, variant }) => {
7756
7781
  const border = separatorColors[variant][type];
@@ -8066,13 +8091,13 @@ hasVoting, voteHasAlreadyBeenRegistered, isVotedByUserLogged, voteText, onDelete
8066
8091
  left: '4px',
8067
8092
  whiteSpace: 'nowrap',
8068
8093
  boxShadow: ' 0px 0px 18px 0px rgba(34, 34, 34, 0.2)'
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: () => {
8094
+ }, children: jsxRuntime.jsx(Avatar, { src: avatar, size: isOwnerGoal ? '24px' : '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: () => {
8070
8095
  if (clickTimeoutRef.current) {
8071
8096
  clearTimeout(clickTimeoutRef.current);
8072
8097
  }
8073
8098
  if (hasEditHipotesisOrImpediment)
8074
8099
  setIsEditing(true);
8075
- }, style: { minHeight: '36px', height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
8100
+ }, style: { height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
8076
8101
  jsxRuntime.jsx(material.TextField, { inputRef: inputRef, value: editDescription, onBlur: handleSaveDescription, onChange: handleChange, onKeyDown: handleKeyDown, multiline: true, fullWidth: true, variant: 'standard', InputProps: {
8077
8102
  disableUnderline: true,
8078
8103
  style: {
@@ -21884,6 +21909,7 @@ const THColumnTitleItem = styled__default["default"].th `
21884
21909
  width: ${({ width }) => width};
21885
21910
  text-align: ${({ align }) => align};
21886
21911
  white-space: nowrap;
21912
+ min-height: 56px;
21887
21913
 
21888
21914
  font-family: 'PT Sans';
21889
21915
  font-size: 16px;
@@ -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,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
+ {"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,oEAQzB,CAAA;AAED,eAAO,MAAM,kBAAkB,mFAc9B,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":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/impedimentosTab/dropDown/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,oEAO7B,CAAA;AAED,eAAO,MAAM,WAAW,oEAoBvB,CAAA"}
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/impedimentosTab/dropDown/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,oEAQ7B,CAAA;AAED,eAAO,MAAM,WAAW,oEAwBvB,CAAA"}
@@ -1,3 +1,3 @@
1
1
  import { ImpedimentosTabProps } from './impedimentosTab';
2
- export default function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab }: ImpedimentosTabProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab, addButtonText }: ImpedimentosTabProps): import("react/jsx-runtime").JSX.Element;
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -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,2CA0QtB"}
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,EACV,aAAa,EAChB,EAAE,oBAAoB,2CAkRtB"}
@@ -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,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
+ {"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;SAgDnE,CAAA;AAED,eAAO,MAAM,wBAAwB;kBAAgC,OAAO;SA4B3E,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":"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,sFAY7B,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.90",
4
+ "version": "0.23.92",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",