@madie/madie-design-system 1.2.2 → 1.2.4

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)
@@ -107,7 +107,7 @@ const MadieDialog = ({
107
107
  </IconButton>
108
108
  </div>
109
109
  </Box>
110
- <Divider />
110
+ <Divider sx={{borderColor: "#8c8c8c"}}/>
111
111
  <DialogContent sx={{ padding: "32px" }}>
112
112
  {showRequiredFieldMessage && (
113
113
  <Box
@@ -141,7 +141,7 @@ const MadieDialog = ({
141
141
 
142
142
  {children}
143
143
  </DialogContent>
144
- <Divider />
144
+ <Divider sx={{borderColor: "#8c8c8c"}}/>
145
145
  <DialogActions
146
146
  sx={{
147
147
  padding: "16px",
@@ -204,11 +204,11 @@ const MadieDialog = ({
204
204
  </IconButton>
205
205
  </div>
206
206
  </Box>
207
- <Divider />
207
+ <Divider sx={{borderColor: "#8c8c8c"}}/>
208
208
  <DialogContent sx={{ padding: "32px" }}>
209
209
  {children}
210
210
  </DialogContent>
211
- <Divider />
211
+ <Divider sx={{borderColor: "#8c8c8c"}}/>
212
212
  <DialogActions
213
213
  sx={{
214
214
  padding: "16px",
@@ -77,6 +77,7 @@ const Pagination = ({
77
77
  sx={{
78
78
  margin: "0 11px",
79
79
  "& .MuiOutlinedInput-notchedOutline": {
80
+ borderColor: "#8C8C8C",
80
81
  "& legend": {
81
82
  width: 0,
82
83
  },
@@ -123,7 +124,7 @@ const Pagination = ({
123
124
  "& .MuiPagination-ul": {
124
125
  "& .MuiPaginationItem-root": {
125
126
  color: "#0073C8",
126
- border: "solid 1px #CACACA",
127
+ border: "solid 1px #8c8c8c",
127
128
  "&:focus": {
128
129
  border: "0.0625rem solid #125496",
129
130
  borderRadius: "0.1875rem",
@@ -29,7 +29,7 @@ const MadiePopover = ({
29
29
  boxShadow: "none",
30
30
  overflow: "visible",
31
31
  ".popover-content": {
32
- border: "solid 1px #979797",
32
+ border: "solid 1px #8c8c8c",
33
33
  position: "relative",
34
34
  marginTop: "16px",
35
35
  marginLeft: "-70px",
@@ -44,8 +44,8 @@ const MadiePopover = ({
44
44
  height: "16px",
45
45
  width: "16px",
46
46
  background: "#F7F7F7",
47
- borderColor:
48
- "#979797 transparent transparent #979797",
47
+ border: 'solid 1px #8c8c8c',
48
+ borderColor: "#8c8c8c transparent transparent #8c8c8c",
49
49
  content: '""',
50
50
  transform: "rotate(45deg)",
51
51
  },