frst-components 0.23.90 → 0.23.91

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([]);
@@ -7603,56 +7619,67 @@ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpediment
7603
7619
  }
7604
7620
  }, [selectedTab]);
7605
7621
  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, {}) }) })
7622
+ 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 ?
7623
+ 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
7624
  :
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, {}) })] }) })
7625
+ jsxRuntime.jsx(jsxRuntime.Fragment, {})] }), jsxRuntime.jsx(material.Box, { display: 'flex', alignItems: 'center', children: showAddButton ?
7626
+ 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
7627
  :
7612
7628
  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) }) })
7629
+ jsxRuntime.jsxs(TabInfoWrapper, { onDoubleClick: () => selectedTab?.showOptions && setIsEdit(true), children: [jsxRuntime.jsx(Tooltip$2, { content: selectedTab?.user_name, direction: 'bottom', delay: 200, style: {
7630
+ fontFamily: 'PT Sans',
7631
+ fontWeight: 400,
7632
+ fontSize: '14px',
7633
+ color: 'rgba(117, 117, 117, 1)',
7634
+ width: 'fit-content',
7635
+ height: '31px',
7636
+ top: '8px',
7637
+ left: '4px',
7638
+ whiteSpace: 'nowrap',
7639
+ boxShadow: ' 0px 0px 18px 0px rgba(34, 34, 34, 0.2)'
7640
+ }, children: selectedTab.isGoalOwner ?
7641
+ 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
7642
  :
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, {})] })] }) })
7643
+ jsxRuntime.jsx(Avatar, { src: selectedTab.avatar, size: '24px', isActiveClick: true, onClick: selectedTab?.handleClickAvatar }) }), isEdit ?
7644
+ 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: {
7645
+ disableUnderline: true,
7646
+ style: {
7647
+ fontFamily: 'PT Sans',
7648
+ fontSize: '14px',
7649
+ lineHeight: 1.3
7650
+ }
7651
+ }, inputRef: (input) => input && input.focus(), onKeyDown: (event) => {
7652
+ if (event.key === 'Enter') {
7653
+ handleUpdate();
7654
+ }
7655
+ if (event.key === 'Escape') {
7656
+ handleCancelUpdate();
7657
+ }
7658
+ }, onBlur: handleUpdate, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) }) })
7659
+ :
7660
+ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("p", { children: displayDescription }), selectedTab?.showOptions ?
7661
+ jsxRuntime.jsx(WrapperMenuMore, { children: jsxRuntime.jsx(MenuMore, { options: [
7662
+ ...(selectedTab?.handlePriorize ? [{
7663
+ description: 'Priorizar',
7664
+ onClick: () => selectedTab?.handlePriorize(selectedTab),
7665
+ disabled: !!selectedTab?.disabledPriorize,
7666
+ color: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222",
7667
+ startIcon: jsxRuntime.jsx(StarPrioritize, { stroke: !!selectedTab?.disabledPriorize ? "#b7b7b7" : "#222222" })
7668
+ }] : []),
7669
+ ...(selectedTab?.handleEdit ? [{
7670
+ description: 'Editar',
7671
+ onClick: () => setIsEdit(true),
7672
+ startIcon: jsxRuntime.jsx(EditHipoteses, {})
7673
+ }] : []),
7674
+ ...(selectedTab?.handleDelete ? [{
7675
+ description: 'Excluir',
7676
+ onClick: () => selectedTab?.handleDelete(selectedTab),
7677
+ startIcon: jsxRuntime.jsx(TrashHipoteses, {}),
7678
+ color: '#C00F00'
7679
+ }] : []),
7680
+ ], closeAfterClick: true, isContainerOptions: true }) })
7681
+ :
7682
+ jsxRuntime.jsx(jsxRuntime.Fragment, {})] })] })
7656
7683
  :
7657
7684
  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
7685
  :
@@ -7700,17 +7727,17 @@ const MainContainer = styled__default["default"].div `
7700
7727
  align-items: center;
7701
7728
  justify-content: space-between;
7702
7729
  width: 100%;
7730
+ min-height: 56px;
7703
7731
  color: #222222;
7732
+ box-sizing: border-box;
7704
7733
  `;
7705
7734
  const ContainerHypotheis = styled__default["default"].div `
7706
7735
  width: 100%;
7707
7736
  display: flex;
7708
- /* align-items: center; */
7709
7737
  justify-content: space-between;
7710
7738
  font-family: PT Sans;
7711
7739
  font-size: 14px;
7712
7740
  border-radius: 8px;
7713
- min-height: 52px;
7714
7741
 
7715
7742
  ${({ type, variant }) => {
7716
7743
  const backgroundColor = backgroundColors$2[variant][type];
@@ -7723,7 +7750,7 @@ const SplitContainerDescription = styled__default["default"].div `
7723
7750
  display: flex;
7724
7751
  justify-content: flex-start;
7725
7752
  align-items: center;
7726
- padding: 16px 16px 16px 0px;
7753
+ padding: 10px 16px 10px 0px;
7727
7754
  gap: 16px;
7728
7755
  height: 100%;
7729
7756
  width: 100%;
@@ -7750,7 +7777,7 @@ const Description$4 = styled__default["default"].span `
7750
7777
  flex-grow: 1;
7751
7778
  flex-wrap: wrap;
7752
7779
  align-items: center;
7753
- padding: 0px 16px 0px 16px;
7780
+ padding: 6px 16px 6px 16px;
7754
7781
 
7755
7782
  ${({ type, variant }) => {
7756
7783
  const border = separatorColors[variant][type];
@@ -8066,13 +8093,13 @@ hasVoting, voteHasAlreadyBeenRegistered, isVotedByUserLogged, voteText, onDelete
8066
8093
  left: '4px',
8067
8094
  whiteSpace: 'nowrap',
8068
8095
  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: () => {
8096
+ }, 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
8097
  if (clickTimeoutRef.current) {
8071
8098
  clearTimeout(clickTimeoutRef.current);
8072
8099
  }
8073
8100
  if (hasEditHipotesisOrImpediment)
8074
8101
  setIsEditing(true);
8075
- }, style: { minHeight: '36px', height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
8102
+ }, style: { height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
8076
8103
  jsxRuntime.jsx(material.TextField, { inputRef: inputRef, value: editDescription, onBlur: handleSaveDescription, onChange: handleChange, onKeyDown: handleKeyDown, multiline: true, fullWidth: true, variant: 'standard', InputProps: {
8077
8104
  disableUnderline: true,
8078
8105
  style: {
@@ -21884,6 +21911,7 @@ const THColumnTitleItem = styled__default["default"].th `
21884
21911
  width: ${({ width }) => width};
21885
21912
  text-align: ${({ align }) => align};
21886
21913
  white-space: nowrap;
21914
+ min-height: 56px;
21887
21915
 
21888
21916
  font-family: 'PT Sans';
21889
21917
  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,2CAoRtB"}
@@ -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.91",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",