frst-components 0.23.89 → 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 +139 -101
- package/dist/src/components/DS/hypotesisAndImpediment/UpDownButtons/upDownButtons.styles.d.ts.map +1 -1
- package/dist/src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.d.ts +4 -1
- package/dist/src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.d.ts.map +1 -1
- package/dist/src/components/DS/hypotesisAndImpediment/index.d.ts.map +1 -1
- package/dist/src/components/DS/impedimentosTab/dropDown/styles.d.ts.map +1 -1
- package/dist/src/components/DS/impedimentosTab/index.d.ts +1 -1
- package/dist/src/components/DS/impedimentosTab/index.d.ts.map +1 -1
- package/dist/src/components/DS/impedimentosTab/styles.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.d.ts.map +1 -1
- package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.d.ts.map +1 -1
- package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
- package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table/parts/TableBody/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table/parts/TableBody/tableStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table/parts/TableHead/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table/parts/TableHead/tableStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/collaboratorAvatarStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/DateLimit/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/EmptyState/emptyStateStyle.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/EmptyState/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/TagStatus/index.d.ts.map +1 -1
- package/dist/src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.d.ts.map +1 -1
- 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
|
|
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
|
|
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,29 +7339,36 @@ 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
|
`;
|
|
7348
7345
|
const WrapperAddButton = styled__default["default"]('div') `
|
|
7349
|
-
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
7353
|
-
|
|
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
|
+
}
|
|
7354
7360
|
|
|
7355
7361
|
${(props) => props.activeButton &&
|
|
7356
7362
|
styled.css `
|
|
7357
|
-
|
|
7363
|
+
color: #7C0EAF;
|
|
7358
7364
|
`}
|
|
7359
7365
|
|
|
7360
7366
|
:hover {
|
|
7361
7367
|
background-color: ${({ theme }) => theme.colors.neutralsGrey8};
|
|
7368
|
+
color: #7C0EAF;
|
|
7362
7369
|
|
|
7363
7370
|
svg path {
|
|
7364
|
-
stroke:
|
|
7371
|
+
stroke: #7C0EAF;
|
|
7365
7372
|
}
|
|
7366
7373
|
}
|
|
7367
7374
|
|
|
@@ -7372,11 +7379,11 @@ const WrapperAddButton = styled__default["default"]('div') `
|
|
|
7372
7379
|
path {
|
|
7373
7380
|
${(props) => props.activeButton ?
|
|
7374
7381
|
styled.css `
|
|
7375
|
-
stroke:
|
|
7382
|
+
stroke: #7C0EAF;
|
|
7376
7383
|
`
|
|
7377
7384
|
:
|
|
7378
7385
|
styled.css `
|
|
7379
|
-
stroke:
|
|
7386
|
+
stroke: #8E0EC8;
|
|
7380
7387
|
`}
|
|
7381
7388
|
}
|
|
7382
7389
|
}
|
|
@@ -7391,17 +7398,18 @@ const WrapperImpedimentoSelect = styled__default["default"]('div') `
|
|
|
7391
7398
|
background-color: ${({ theme }) => theme.colors.shadeWhite};
|
|
7392
7399
|
cursor: default;
|
|
7393
7400
|
|
|
7394
|
-
${(props) => props.activeSelect &&
|
|
7395
|
-
styled.css `
|
|
7396
|
-
background-color: ${({ theme }) => theme.colors.neutralsGrey6};
|
|
7397
|
-
`}
|
|
7398
|
-
|
|
7399
7401
|
p {
|
|
7400
7402
|
font-family: 'PT Sans';
|
|
7401
7403
|
font-size: 16px;
|
|
7402
7404
|
line-height: 1.1;
|
|
7403
|
-
font-weight:
|
|
7404
|
-
color: ${({ theme }) => theme.colors.
|
|
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
|
+
`}
|
|
7405
7413
|
}
|
|
7406
7414
|
|
|
7407
7415
|
:hover {
|
|
@@ -7482,6 +7490,7 @@ const ContainerDropdown = styled__default["default"]('div') `
|
|
|
7482
7490
|
border-radius: 8px;
|
|
7483
7491
|
box-shadow: 0px 5px 15px 0px #00000040;
|
|
7484
7492
|
background-color: #FFFFFF;
|
|
7493
|
+
width: 300px;
|
|
7485
7494
|
`;
|
|
7486
7495
|
const DropdownRow = styled__default["default"]('div') `
|
|
7487
7496
|
padding: 10px 4px;
|
|
@@ -7493,6 +7502,10 @@ const DropdownRow = styled__default["default"]('div') `
|
|
|
7493
7502
|
font-size: 16px;
|
|
7494
7503
|
line-height: 1.1;
|
|
7495
7504
|
font-weight: 400;
|
|
7505
|
+
color: ${({ theme }) => theme.colors.neutralsGrey1};
|
|
7506
|
+
white-space: nowrap;
|
|
7507
|
+
text-overflow: ellipsis;
|
|
7508
|
+
overflow: hidden
|
|
7496
7509
|
}
|
|
7497
7510
|
|
|
7498
7511
|
:first-child {
|
|
@@ -7508,7 +7521,7 @@ const DropdownRow = styled__default["default"]('div') `
|
|
|
7508
7521
|
function Dropdown$1({ isOpen, anchor, onClose, impedimentoList, onClickImpedimento }) {
|
|
7509
7522
|
const render = () => {
|
|
7510
7523
|
return (impedimentoList.map((item, index) => {
|
|
7511
|
-
return (jsxRuntime.jsx(DropdownRow, { onClick: () => onClickImpedimento(item), children: jsxRuntime.
|
|
7524
|
+
return (jsxRuntime.jsx(DropdownRow, { onClick: () => onClickImpedimento(item), children: jsxRuntime.jsxs("p", { children: [item.title, ": ", item.description] }) }, index));
|
|
7512
7525
|
}));
|
|
7513
7526
|
};
|
|
7514
7527
|
return (jsxRuntime.jsx(material.Popover, { open: isOpen, onClose: onClose, anchorEl: anchor, anchorOrigin: {
|
|
@@ -7520,7 +7533,7 @@ function Dropdown$1({ isOpen, anchor, onClose, impedimentoList, onClickImpedimen
|
|
|
7520
7533
|
}, children: jsxRuntime.jsx(ContainerDropdown, { children: render() }) }));
|
|
7521
7534
|
}
|
|
7522
7535
|
|
|
7523
|
-
function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab }) {
|
|
7536
|
+
function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpedimento, onSelectedTab, idSelectedTab, currentTab, addButtonText }) {
|
|
7524
7537
|
const [selectedTab, setSelectedTab] = React.useState(null);
|
|
7525
7538
|
const [allTabs, setAllTabs] = React.useState([]);
|
|
7526
7539
|
const [onShowTabs, setOnShowTabs] = React.useState([]);
|
|
@@ -7606,57 +7619,67 @@ function ImpedimentosTab({ maxTabs, tabsList, showAddButton, onSaveNewImpediment
|
|
|
7606
7619
|
}
|
|
7607
7620
|
}, [selectedTab]);
|
|
7608
7621
|
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: allTabs.length > 0 ?
|
|
7609
|
-
jsxRuntime.jsxs(ContainerImpedimentos, { children: [jsxRuntime.jsxs(TabWrapper, { children: [jsxRuntime.jsxs(material.Box, { display: 'flex', alignItems: 'center', children: [onShowTabs.map((item, index) => renderTabs(item, index)),
|
|
7610
|
-
jsxRuntime.jsx(Tooltip$2, { content: '
|
|
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, {}) })] }) })
|
|
7611
7624
|
:
|
|
7612
|
-
jsxRuntime.jsx(jsxRuntime.Fragment, {})] }), jsxRuntime.jsx(material.Box, { display: 'flex', alignItems: 'center', children:
|
|
7613
|
-
jsxRuntime.jsx(Tooltip$2, { content: '
|
|
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 })] }) })
|
|
7614
7627
|
:
|
|
7615
7628
|
jsxRuntime.jsx(jsxRuntime.Fragment, {}) })] }), selectedTab?.id ?
|
|
7616
|
-
jsxRuntime.
|
|
7617
|
-
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
|
|
7621
|
-
|
|
7622
|
-
|
|
7623
|
-
|
|
7624
|
-
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
if (event.key === 'Enter') {
|
|
7630
|
-
handleUpdate();
|
|
7631
|
-
}
|
|
7632
|
-
if (event.key === 'Escape') {
|
|
7633
|
-
handleCancelUpdate();
|
|
7634
|
-
}
|
|
7635
|
-
}, onBlur: handleUpdate }) })
|
|
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 }) })
|
|
7636
7642
|
:
|
|
7637
|
-
jsxRuntime.
|
|
7638
|
-
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
|
|
7648
|
-
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
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, {})] })] })
|
|
7660
7683
|
:
|
|
7661
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 })] })
|
|
7662
7685
|
:
|
|
@@ -7704,21 +7727,17 @@ const MainContainer = styled__default["default"].div `
|
|
|
7704
7727
|
align-items: center;
|
|
7705
7728
|
justify-content: space-between;
|
|
7706
7729
|
width: 100%;
|
|
7730
|
+
min-height: 56px;
|
|
7707
7731
|
color: #222222;
|
|
7732
|
+
box-sizing: border-box;
|
|
7708
7733
|
`;
|
|
7709
7734
|
const ContainerHypotheis = styled__default["default"].div `
|
|
7710
7735
|
width: 100%;
|
|
7711
7736
|
display: flex;
|
|
7712
|
-
align-items: center;
|
|
7713
7737
|
justify-content: space-between;
|
|
7714
7738
|
font-family: PT Sans;
|
|
7715
7739
|
font-size: 14px;
|
|
7716
7740
|
border-radius: 8px;
|
|
7717
|
-
/* padding-left: 16px; */
|
|
7718
|
-
padding-right: 16px;
|
|
7719
|
-
/* padding-top: 10px;
|
|
7720
|
-
padding-bottom: 10px; */
|
|
7721
|
-
min-height: 52px;
|
|
7722
7741
|
|
|
7723
7742
|
${({ type, variant }) => {
|
|
7724
7743
|
const backgroundColor = backgroundColors$2[variant][type];
|
|
@@ -7731,10 +7750,12 @@ const SplitContainerDescription = styled__default["default"].div `
|
|
|
7731
7750
|
display: flex;
|
|
7732
7751
|
justify-content: flex-start;
|
|
7733
7752
|
align-items: center;
|
|
7753
|
+
padding: 10px 16px 10px 0px;
|
|
7754
|
+
gap: 16px;
|
|
7734
7755
|
height: 100%;
|
|
7735
7756
|
width: 100%;
|
|
7736
7757
|
`;
|
|
7737
|
-
|
|
7758
|
+
styled__default["default"].div `
|
|
7738
7759
|
height: 24px;
|
|
7739
7760
|
width: 1px;
|
|
7740
7761
|
margin-left: 14px;
|
|
@@ -7752,10 +7773,18 @@ const Title$6 = styled__default["default"].span `
|
|
|
7752
7773
|
`;
|
|
7753
7774
|
const Description$4 = styled__default["default"].span `
|
|
7754
7775
|
font-weight: 400;
|
|
7755
|
-
padding: 8px 0 8px;
|
|
7756
7776
|
display: flex;
|
|
7757
7777
|
flex-grow: 1;
|
|
7758
7778
|
flex-wrap: wrap;
|
|
7779
|
+
align-items: center;
|
|
7780
|
+
padding: 6px 16px 6px 16px;
|
|
7781
|
+
|
|
7782
|
+
${({ type, variant }) => {
|
|
7783
|
+
const border = separatorColors[variant][type];
|
|
7784
|
+
return styled.css `
|
|
7785
|
+
border-left: 1px solid ${border};
|
|
7786
|
+
`;
|
|
7787
|
+
}}
|
|
7759
7788
|
`;
|
|
7760
7789
|
|
|
7761
7790
|
const backgroundColors$1 = {
|
|
@@ -7780,6 +7809,7 @@ const ContainerArrowButton = styled__default["default"].div `
|
|
|
7780
7809
|
display: flex;
|
|
7781
7810
|
flex-direction: column;
|
|
7782
7811
|
align-items: center;
|
|
7812
|
+
justify-content: center;
|
|
7783
7813
|
border-radius: 8px 0 0 8px;
|
|
7784
7814
|
`;
|
|
7785
7815
|
const ArrowButton$1 = styled__default["default"].button `
|
|
@@ -7788,6 +7818,8 @@ const ArrowButton$1 = styled__default["default"].button `
|
|
|
7788
7818
|
width: 100%;
|
|
7789
7819
|
color: #444444;
|
|
7790
7820
|
cursor: pointer;
|
|
7821
|
+
display: flex;
|
|
7822
|
+
height: 100%;
|
|
7791
7823
|
svg: {
|
|
7792
7824
|
}
|
|
7793
7825
|
:hover {
|
|
@@ -7795,7 +7827,7 @@ const ArrowButton$1 = styled__default["default"].button `
|
|
|
7795
7827
|
}
|
|
7796
7828
|
`;
|
|
7797
7829
|
|
|
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"], {}) })] }));
|
|
7830
|
+
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
7831
|
|
|
7800
7832
|
const backgroundColors = {
|
|
7801
7833
|
prioritize: '#EE9F08',
|
|
@@ -7806,8 +7838,8 @@ const ContainerVoting = styled__default["default"].div `
|
|
|
7806
7838
|
display: flex;
|
|
7807
7839
|
align-items: center;
|
|
7808
7840
|
justify-content: center;
|
|
7809
|
-
min-width: 68px;
|
|
7810
|
-
width:
|
|
7841
|
+
/* min-width: 68px; */
|
|
7842
|
+
width: fit-content;
|
|
7811
7843
|
height: 36px;
|
|
7812
7844
|
padding: 4px;
|
|
7813
7845
|
cursor: pointer;
|
|
@@ -8061,30 +8093,35 @@ hasVoting, voteHasAlreadyBeenRegistered, isVotedByUserLogged, voteText, onDelete
|
|
|
8061
8093
|
left: '4px',
|
|
8062
8094
|
whiteSpace: 'nowrap',
|
|
8063
8095
|
boxShadow: ' 0px 0px 18px 0px rgba(34, 34, 34, 0.2)'
|
|
8064
|
-
}, children: jsxRuntime.jsx(Avatar, { src: avatar, size: isOwnerGoal ? '
|
|
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: () => {
|
|
8065
8097
|
if (clickTimeoutRef.current) {
|
|
8066
8098
|
clearTimeout(clickTimeoutRef.current);
|
|
8067
8099
|
}
|
|
8068
8100
|
if (hasEditHipotesisOrImpediment)
|
|
8069
8101
|
setIsEditing(true);
|
|
8070
|
-
}, style: {
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8102
|
+
}, style: { height: isEditing ? "auto" : "fit-content" }, children: isEditing ?
|
|
8103
|
+
jsxRuntime.jsx(material.TextField, { inputRef: inputRef, value: editDescription, onBlur: handleSaveDescription, onChange: handleChange, onKeyDown: handleKeyDown, multiline: true, fullWidth: true, variant: 'standard', InputProps: {
|
|
8104
|
+
disableUnderline: true,
|
|
8105
|
+
style: {
|
|
8106
|
+
fontFamily: 'PT Sans',
|
|
8107
|
+
fontSize: '14px',
|
|
8108
|
+
lineHeight: 1.3
|
|
8109
|
+
},
|
|
8110
|
+
}, onFocus: (e) => e.currentTarget.setSelectionRange(e.currentTarget.value.length, e.currentTarget.value.length) })
|
|
8111
|
+
:
|
|
8112
|
+
jsxRuntime.jsx(Tooltip$2, { content: 'Clique na hipótese para ver as ações vinculadas', direction: 'bottom', wrapperWidth: '100%', style: {
|
|
8113
|
+
fontFamily: 'PT Sans',
|
|
8114
|
+
fontWeight: 400,
|
|
8115
|
+
fontSize: '14px',
|
|
8116
|
+
color: '#757575',
|
|
8117
|
+
width: '171px',
|
|
8118
|
+
height: '52px',
|
|
8119
|
+
top: '8px',
|
|
8120
|
+
left: '4px',
|
|
8121
|
+
whiteSpace: 'wrap',
|
|
8122
|
+
boxShadow: ' 0px 25px 18px -20px #22222233;',
|
|
8123
|
+
display: variant === 'impediment' || isEditing ? 'none' : 'block'
|
|
8124
|
+
}, 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
8125
|
};
|
|
8089
8126
|
|
|
8090
8127
|
const ModalContainer = styled__default["default"].div `
|
|
@@ -21874,6 +21911,7 @@ const THColumnTitleItem = styled__default["default"].th `
|
|
|
21874
21911
|
width: ${({ width }) => width};
|
|
21875
21912
|
text-align: ${({ align }) => align};
|
|
21876
21913
|
white-space: nowrap;
|
|
21914
|
+
min-height: 56px;
|
|
21877
21915
|
|
|
21878
21916
|
font-family: 'PT Sans';
|
|
21879
21917
|
font-size: 16px;
|
package/dist/src/components/DS/hypotesisAndImpediment/UpDownButtons/upDownButtons.styles.d.ts.map
CHANGED
|
@@ -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,
|
|
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, {
|
|
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
|
package/dist/src/components/DS/hypotesisAndImpediment/hypothesisAndImpediment.style.d.ts.map
CHANGED
|
@@ -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,
|
|
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":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/hypotesisAndImpediment/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,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":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/impedimentosTab/dropDown/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,
|
|
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,
|
|
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,
|
|
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"}
|
package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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":["
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collaboratorAvatarStyle.d.ts","sourceRoot":"","sources":["
|
|
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"}
|
package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
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"}
|
package/dist/src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dateLimitStyle.d.ts","sourceRoot":"","sources":["
|
|
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":["
|
|
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"}
|
package/dist/src/components/form-elements/table-actions/parts/EmptyState/emptyStateStyle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emptyStateStyle.d.ts","sourceRoot":"","sources":["
|
|
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":["
|
|
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":["
|
|
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"}
|
package/dist/src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tagStatusStyle.d.ts","sourceRoot":"","sources":["
|
|
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"}
|