@madie/madie-design-system 1.2.2 → 1.2.3
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.
|
@@ -34,6 +34,9 @@ const autoCompleteStyles = {
|
|
|
34
34
|
backgroundColor: "#EDEDED",
|
|
35
35
|
border: "#EDEDED",
|
|
36
36
|
},
|
|
37
|
+
'& .MuiChip-deleteIcon': {
|
|
38
|
+
color: "#757575",
|
|
39
|
+
},
|
|
37
40
|
};
|
|
38
41
|
|
|
39
42
|
const checkedIcon = <CheckBoxIcon fontSize="small" />;
|
|
@@ -212,11 +215,6 @@ const AutoComplete = ({
|
|
|
212
215
|
? renderOptionMultiple(props, option, selected)
|
|
213
216
|
: renderOptionSingle(props, option);
|
|
214
217
|
}}
|
|
215
|
-
ChipProps={{sx:{
|
|
216
|
-
'& .MuiChip-deleteIcon': {
|
|
217
|
-
color: "#757575",
|
|
218
|
-
},
|
|
219
|
-
}}}
|
|
220
218
|
{...rest}
|
|
221
219
|
onChange={(_event, selectedVal, reason, detail ) =>
|
|
222
220
|
onChange(id, selectedVal || "", reason, detail)
|