@dartech/arsenal-ui 1.3.87 → 1.3.88
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 +11 -5
- package/package.json +1 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/BooleanValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/DateTimeValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/DateValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/JsonValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/TimeValueField.d.ts +0 -1
- package/src/lib/Property/ViewProperty/PropertyItem.d.ts +0 -1
package/index.js
CHANGED
@@ -70,8 +70,6 @@ import StepContent from '@mui/material/StepContent';
|
|
70
70
|
import StepConnector from '@mui/material/StepConnector';
|
71
71
|
import Select from '@mui/material/Select';
|
72
72
|
import InputLabel from '@mui/material/InputLabel';
|
73
|
-
import CheckCircleOutlineOutlinedIcon from '@mui/icons-material/CheckCircleOutlineOutlined';
|
74
|
-
import BlockOutlinedIcon from '@mui/icons-material/BlockOutlined';
|
75
73
|
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
|
76
74
|
import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider';
|
77
75
|
import classnames from 'classnames';
|
@@ -3766,15 +3764,23 @@ const FileValueWidget = ({
|
|
3766
3764
|
}, {
|
3767
3765
|
children: [jsx(Typography, {
|
3768
3766
|
children: "Does file uploaded:"
|
3769
|
-
}), fileValue ? jsx(
|
3767
|
+
}), fileValue ? jsx(SvgIcon, Object.assign({
|
3770
3768
|
sx: {
|
3771
3769
|
paddingLeft: 2
|
3772
3770
|
}
|
3773
|
-
}
|
3771
|
+
}, {
|
3772
|
+
children: jsx("path", {
|
3773
|
+
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"
|
3774
|
+
})
|
3775
|
+
})) : jsx(SvgIcon, Object.assign({
|
3774
3776
|
sx: {
|
3775
3777
|
paddingLeft: 2
|
3776
3778
|
}
|
3777
|
-
}
|
3779
|
+
}, {
|
3780
|
+
children: jsx("path", {
|
3781
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"
|
3782
|
+
})
|
3783
|
+
}))]
|
3778
3784
|
})), jsxs(Button, Object.assign({
|
3779
3785
|
component: "label",
|
3780
3786
|
variant: "contained",
|
package/package.json
CHANGED