@dartech/arsenal-ui 1.3.20 → 1.3.21
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/index.js +6 -3
- package/package.json +1 -1
package/index.js
CHANGED
@@ -75,7 +75,6 @@ import StepConnector from '@mui/material/StepConnector';
|
|
75
75
|
import Select from '@mui/material/Select';
|
76
76
|
import CloseIcon from '@mui/icons-material/Close';
|
77
77
|
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
78
|
-
import CheckCircleIcon from '@mui/icons-material/CheckCircle';
|
79
78
|
import classnames from 'classnames';
|
80
79
|
import { toast } from 'react-toastify';
|
81
80
|
import CssBaseline from '@mui/material/CssBaseline';
|
@@ -4957,10 +4956,14 @@ const formatDiplayValue = (value, key, type) => {
|
|
4957
4956
|
case 'isMultiple':
|
4958
4957
|
case 'isEnabled':
|
4959
4958
|
case 'isViewableInList':
|
4960
|
-
return value ? jsx(
|
4959
|
+
return value ? jsx(SvgIcon, Object.assign({
|
4961
4960
|
color: "primary",
|
4962
4961
|
fontSize: "small"
|
4963
|
-
}
|
4962
|
+
}, {
|
4963
|
+
children: jsx("path", {
|
4964
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
4965
|
+
})
|
4966
|
+
})) : null;
|
4964
4967
|
case 'restrictedValues':
|
4965
4968
|
return value ? jsx(Box, Object.assign({
|
4966
4969
|
display: "flex",
|