@madie/madie-design-system 1.2.48 → 1.2.50
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/Tabs/Tab.js
CHANGED
|
@@ -47,9 +47,9 @@ const Tab = ({ type, orientation, size, ...rest }) => {
|
|
|
47
47
|
textTransform: "none",
|
|
48
48
|
fontSize: "16px",
|
|
49
49
|
alignItems: orientation === "vertical" && "flex-start",
|
|
50
|
-
"
|
|
50
|
+
"&.Mui-disabled": {
|
|
51
51
|
background: "#DDDDDD",
|
|
52
|
-
color: "#717171",
|
|
52
|
+
color: "#717171 !important",
|
|
53
53
|
},
|
|
54
54
|
};
|
|
55
55
|
const style = ((type) => {
|
|
@@ -91,14 +91,13 @@ const TextArea = ({
|
|
|
91
91
|
</FormHelperText>
|
|
92
92
|
)}
|
|
93
93
|
<TextareaAutosize
|
|
94
|
-
style={{ marginTop: "8px", maxWidth: "100%" }}
|
|
94
|
+
style={{ marginTop: "8px", maxWidth: "100%", }}
|
|
95
95
|
className={
|
|
96
96
|
error ? "text-area-variable error" : "text-area-variable"
|
|
97
97
|
}
|
|
98
98
|
label={null}
|
|
99
99
|
disabled={disabled}
|
|
100
100
|
id={id}
|
|
101
|
-
maxLength={maxLength}
|
|
102
101
|
{...inputProps}
|
|
103
102
|
{...rest}
|
|
104
103
|
/>
|
|
@@ -107,9 +106,9 @@ const TextArea = ({
|
|
|
107
106
|
style={{
|
|
108
107
|
fontFamily: "Rubik",
|
|
109
108
|
fontSize: 12,
|
|
110
|
-
color: "#
|
|
109
|
+
color: "#717171",
|
|
111
110
|
position: "absolute",
|
|
112
|
-
bottom: -
|
|
111
|
+
bottom: -26,
|
|
113
112
|
right: 0,
|
|
114
113
|
}}
|
|
115
114
|
>
|
|
@@ -44,6 +44,7 @@ const TextField = ({
|
|
|
44
44
|
|
|
45
45
|
const extendedTextFieldStyles = {
|
|
46
46
|
borderRadius: "3px",
|
|
47
|
+
|
|
47
48
|
border: "none",
|
|
48
49
|
marginTop: "8px",
|
|
49
50
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
@@ -170,7 +171,6 @@ const TextField = ({
|
|
|
170
171
|
id={id}
|
|
171
172
|
inputProps={{
|
|
172
173
|
...newInputProps,
|
|
173
|
-
maxLength: maxLength,
|
|
174
174
|
}}
|
|
175
175
|
{...rest}
|
|
176
176
|
/>
|
|
@@ -179,9 +179,9 @@ const TextField = ({
|
|
|
179
179
|
style={{
|
|
180
180
|
fontFamily: "Rubik",
|
|
181
181
|
fontSize: 12,
|
|
182
|
-
color: "#
|
|
182
|
+
color: "#717171",
|
|
183
183
|
position: "absolute",
|
|
184
|
-
bottom: -
|
|
184
|
+
bottom: -26,
|
|
185
185
|
right: 0,
|
|
186
186
|
}}
|
|
187
187
|
>
|