@madie/madie-design-system 1.2.1 → 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.
- package/components/AutoComplete/AutoComplete.jsx +11 -1
- package/dist/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.9ac140bf.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/main.d03a93ad.iframe.bundle.js +0 -1
|
@@ -15,7 +15,6 @@ const autoCompleteStyles = {
|
|
|
15
15
|
marginTop: "8px",
|
|
16
16
|
borderRadius: "3px",
|
|
17
17
|
height: 40,
|
|
18
|
-
border: "1px solid #DDDDDD",
|
|
19
18
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
20
19
|
borderRadius: "3px",
|
|
21
20
|
"& legend": {
|
|
@@ -35,6 +34,9 @@ const autoCompleteStyles = {
|
|
|
35
34
|
backgroundColor: "#EDEDED",
|
|
36
35
|
border: "#EDEDED",
|
|
37
36
|
},
|
|
37
|
+
'& .MuiChip-deleteIcon': {
|
|
38
|
+
color: "#757575",
|
|
39
|
+
},
|
|
38
40
|
};
|
|
39
41
|
|
|
40
42
|
const checkedIcon = <CheckBoxIcon fontSize="small" />;
|
|
@@ -183,6 +185,14 @@ const AutoComplete = ({
|
|
|
183
185
|
return (
|
|
184
186
|
<TextField
|
|
185
187
|
sx={{
|
|
188
|
+
border: "none",
|
|
189
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
190
|
+
borderRadius: "3px",
|
|
191
|
+
borderColor: "#8C8C8C",
|
|
192
|
+
"& legend": {
|
|
193
|
+
width: 0,
|
|
194
|
+
},
|
|
195
|
+
},
|
|
186
196
|
"& .MuiInputBase-input": {
|
|
187
197
|
opacity: 1,
|
|
188
198
|
color: "#333",
|