@dartech/arsenal-ui 1.3.19 → 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 +14 -5
- 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';
|
@@ -3371,11 +3370,17 @@ const StringPropertyFields = ({
|
|
3371
3370
|
onKeyDown: handleKeyDown
|
3372
3371
|
},
|
3373
3372
|
InputProps: {
|
3374
|
-
endAdornment: jsx(IconButton, {
|
3373
|
+
endAdornment: jsx(IconButton, Object.assign({
|
3375
3374
|
size: "small",
|
3376
3375
|
onClick: handleAddValue,
|
3377
3376
|
disabled: !!error
|
3378
|
-
}
|
3377
|
+
}, {
|
3378
|
+
children: jsx(SvgIcon, {
|
3379
|
+
children: jsx("path", {
|
3380
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
3381
|
+
})
|
3382
|
+
})
|
3383
|
+
}))
|
3379
3384
|
}
|
3380
3385
|
})
|
3381
3386
|
})]
|
@@ -4951,10 +4956,14 @@ const formatDiplayValue = (value, key, type) => {
|
|
4951
4956
|
case 'isMultiple':
|
4952
4957
|
case 'isEnabled':
|
4953
4958
|
case 'isViewableInList':
|
4954
|
-
return value ? jsx(
|
4959
|
+
return value ? jsx(SvgIcon, Object.assign({
|
4955
4960
|
color: "primary",
|
4956
4961
|
fontSize: "small"
|
4957
|
-
}
|
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;
|
4958
4967
|
case 'restrictedValues':
|
4959
4968
|
return value ? jsx(Box, Object.assign({
|
4960
4969
|
display: "flex",
|