@dartech/arsenal-ui 1.4.69 → 1.4.71

Sign up to get free protection for your applications and to get access to all the features.
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',
@@ -6889,7 +6894,7 @@ const PropertyFiller = ({
6889
6894
  });
6890
6895
  } else if (!property.isRequired && (property.defaultValue === null || property.value === null)) {
6891
6896
  setValue(name, null);
6892
- } else if (!(isPropertyValueEmpty(property.defaultValue) || isPropertyValueEmpty(property.value))) {
6897
+ } else if (!isPropertyValueEmpty(property.defaultValue) || !isPropertyValueEmpty(property.value)) {
6893
6898
  setValue(name, property.defaultValue || property.value);
6894
6899
  }
6895
6900
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.4.69",
3
+ "version": "1.4.71",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -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;