@dartech/arsenal-ui 1.4.70 → 1.4.71
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +6 -1
- package/package.json +1 -1
- package/src/theme/inputThemeOptions.d.ts +5 -0
package/index.js
CHANGED
@@ -1616,6 +1616,7 @@ const inputThemeOptions = {
|
|
1616
1616
|
MuiInputBase: {
|
1617
1617
|
styleOverrides: {
|
1618
1618
|
root: {
|
1619
|
+
color: '#262842',
|
1619
1620
|
borderRadius: baseTheme.spacing(3),
|
1620
1621
|
minWidth: baseTheme.spacing(25),
|
1621
1622
|
background: baseTheme.palette.background.default
|
@@ -1720,8 +1721,12 @@ const inputThemeOptions = {
|
|
1720
1721
|
MuiFormLabel: {
|
1721
1722
|
styleOverrides: {
|
1722
1723
|
root: {
|
1724
|
+
color: '#6D6E85',
|
1723
1725
|
fontSize: 14,
|
1724
|
-
fontWeight: 500
|
1726
|
+
fontWeight: 500,
|
1727
|
+
'& span': {
|
1728
|
+
color: '#D6331F'
|
1729
|
+
}
|
1725
1730
|
},
|
1726
1731
|
asterisk: {
|
1727
1732
|
color: '#D6331F',
|
package/package.json
CHANGED
@@ -10,6 +10,7 @@ declare const inputThemeOptions: {
|
|
10
10
|
MuiInputBase: {
|
11
11
|
styleOverrides: {
|
12
12
|
root: {
|
13
|
+
color: string;
|
13
14
|
borderRadius: string;
|
14
15
|
minWidth: string;
|
15
16
|
background: string;
|
@@ -106,8 +107,12 @@ declare const inputThemeOptions: {
|
|
106
107
|
MuiFormLabel: {
|
107
108
|
styleOverrides: {
|
108
109
|
root: {
|
110
|
+
color: string;
|
109
111
|
fontSize: number;
|
110
112
|
fontWeight: number;
|
113
|
+
'& span': {
|
114
|
+
color: string;
|
115
|
+
};
|
111
116
|
};
|
112
117
|
asterisk: {
|
113
118
|
color: string;
|