@lunit/oui 2.3.6 → 2.3.8
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.
|
@@ -13,8 +13,8 @@ function Dialog({ open, title, icon, closable, isPrompt, cancelText, submitText,
|
|
|
13
13
|
const displayChildren = !text && !!children;
|
|
14
14
|
return (_jsxs(StyledDialog, { open: open, onClose: handleClose, displayChildren: displayChildren, isPrompt: isPrompt, sx: sx, className: "customDialog", PaperProps: {
|
|
15
15
|
className: 'dialogPaper',
|
|
16
|
-
}, children: [_jsxs(StyledHeaderBox, { isPrompt: isPrompt, displayChildren: displayChildren, className: "dialogTitle", children: [_jsx(Box, { children: _jsxs(StyledDialogTitle, { children: [icon && _jsx("div", { className: "dialogIcon", children: icon }), title] }) }), closable && (_jsx(Button, { size: "small", variant: "ghost", label: "",
|
|
16
|
+
}, children: [_jsxs(StyledHeaderBox, { isPrompt: isPrompt, displayChildren: displayChildren, className: "dialogTitle", children: [_jsx(Box, { children: _jsxs(StyledDialogTitle, { children: [icon && _jsx("div", { className: "dialogIcon", children: icon }), title] }) }), closable && (_jsx(Button, { size: "small", variant: "ghost", label: "", disabled: loading,
|
|
17
17
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
18
|
-
onClick: (event) => handleClose(event, 'cancel'), icon: _jsx(CloseSmall, {
|
|
18
|
+
onClick: (event) => handleClose(event, 'cancel'), icon: _jsx(CloseSmall, { sx: { color: theme.palette.neutralGrey[0] } }) }))] }), !displayChildren && _jsx(StyledDialogContent, { children: text }), displayChildren && (_jsx(StyledDialogContent, { className: "childrenDialog", children: children })), dialogAction && _jsx(StyledDialogActions, { children: dialogAction }), !dialogAction && (cancelText || submitText) && (_jsxs(StyledDialogActions, { children: [cancelText && (_jsx(Button, { label: cancelText, size: buttonSize, disabled: loading, variant: "ghost", onClick: () => handleClose(null, 'cancel') })), submitText && (_jsx(Button, { disabled: disableSubmit || loading, loading: loading, label: submitText, size: buttonSize, sx: loading ? { width: '75px' } : null, onClick: () => handleClose(null, 'submit') }))] }))] }));
|
|
19
19
|
}
|
|
20
20
|
export default Dialog;
|
|
@@ -15,7 +15,7 @@ const Segments = ({ segments, adjustForOnePercent }) => {
|
|
|
15
15
|
if (segment.color === 'jet') {
|
|
16
16
|
return _jsx(HeatmapGraphSVG, { width: `${segment.width}%` });
|
|
17
17
|
}
|
|
18
|
-
return (_jsx(GraphSegment, { color: segment.color, hasAdjustedOnePercentSegment: adjustForOnePercent, isOnePercentSegment: segment.width <= 1, combinedWidth: combinedWidth, width: segment.width, isNextSegment: i === 1 }, i));
|
|
18
|
+
return (_jsx(GraphSegment, { color: segment.color, hasAdjustedOnePercentSegment: adjustForOnePercent, isOnePercentSegment: segment.width > 0 && segment.width <= 1, combinedWidth: combinedWidth, width: segment.width, isNextSegment: i === 1 }, i));
|
|
19
19
|
}) }));
|
|
20
20
|
};
|
|
21
21
|
const AnalysisBar = ({ componentType = 'analysisBar', expressionValue, caption, expressionLevels = [], expressionLabels = [], segments, isDimmed = false, }) => {
|
|
@@ -23,7 +23,7 @@ const AnalysisBar = ({ componentType = 'analysisBar', expressionValue, caption,
|
|
|
23
23
|
throw new Error("The 'componentType' prop is required.");
|
|
24
24
|
if (!expressionLevels.length)
|
|
25
25
|
throw new Error("The 'expressionLevels' prop must contain at least one item.");
|
|
26
|
-
const hasAdjustedOnePercentSegment = segments?.[0]
|
|
26
|
+
const hasAdjustedOnePercentSegment = segments?.[0]?.width > 0 && segments?.[0]?.width <= 1;
|
|
27
27
|
return (_jsxs(AnalysisBarOuter, { className: "analysis-bar", isDimmed: isDimmed, children: [_jsxs(AnalysisBarSegmentContainer, { children: [expressionValue && (_jsx(GraphScoreIndicator, { adjustForOnePercent: hasAdjustedOnePercentSegment, value: expressionValue, isJet: segments?.[0].color === 'jet' })), _jsx(Segments, { segments: segments, adjustForOnePercent: hasAdjustedOnePercentSegment })] }), (expressionLevels.length > 0 || caption) && (_jsxs(AxisLabels, { children: [expressionLevels.length > 0 &&
|
|
28
28
|
expressionLevels.map((val, i) => {
|
|
29
29
|
const adjustedForOnePercent = +val <= 1 && +val > 0;
|
package/package.json
CHANGED