@rabex-kit/rabex-ui 0.2.60 → 0.2.61

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.
@@ -1674,7 +1674,7 @@ var getTypography = function getTypography(size, mode) {
1674
1674
  };
1675
1675
  };
1676
1676
  /**
1677
- * Chip component of Material is somthing like Badge ,
1677
+ * Chip component of Material is something like Badge ,
1678
1678
  * Material Ui Chip is wrapper for content that has
1679
1679
  * Background color and other various Props,
1680
1680
  * you can see Chip Documentation api that I mentioned below [here](https://mui.com/material-ui/api/chip)
@@ -4286,7 +4286,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4286
4286
  },
4287
4287
  light: {
4288
4288
  color: theme.palette.textColor[900],
4289
- backgroundColor: theme.palette.warning[50],
4289
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.warning[50] : colorManipulator_js.alpha(theme.palette.warning[50], 0.5),
4290
4290
  border: "1px solid " + theme.palette.warning[200]
4291
4291
  }
4292
4292
  },
@@ -4297,7 +4297,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4297
4297
  },
4298
4298
  light: {
4299
4299
  color: theme.palette.primary[500],
4300
- backgroundColor: theme.palette.info[50],
4300
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info(50), 0.5),
4301
4301
  border: "1px solid " + theme.palette.info[200]
4302
4302
  }
4303
4303
  },
@@ -4308,7 +4308,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4308
4308
  },
4309
4309
  light: {
4310
4310
  color: theme.palette.primary[500],
4311
- backgroundColor: theme.palette.info[50],
4311
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info[50], 0.5),
4312
4312
  border: "1px solid " + theme.palette.info[200]
4313
4313
  }
4314
4314
  },
@@ -4319,7 +4319,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4319
4319
  },
4320
4320
  light: {
4321
4321
  color: theme.palette.error[400],
4322
- backgroundColor: theme.palette.error[50],
4322
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.error[50] : colorManipulator_js.alpha(theme.palette.error[50], 0.5),
4323
4323
  border: "1px solid " + theme.palette.error[200]
4324
4324
  }
4325
4325
  },
@@ -4330,7 +4330,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4330
4330
  },
4331
4331
  light: {
4332
4332
  color: theme.palette.success[400],
4333
- backgroundColor: theme.palette.success[50],
4333
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.success[50] : colorManipulator_js.alpha(theme.palette.success[50], 0.5),
4334
4334
  border: "1px solid " + theme.palette.success[200]
4335
4335
  }
4336
4336
  }