@rabex-kit/rabex-ui 0.2.66 → 0.2.67

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.
@@ -4272,11 +4272,11 @@ var colorModeConfig = function colorModeConfig(theme) {
4272
4272
  "default": {
4273
4273
  normal: {
4274
4274
  color: theme.palette.textColor[50],
4275
- backgroundColor: theme.palette.backgroundColor[900]
4275
+ backgroundColor: theme.palette.base[900]
4276
4276
  },
4277
4277
  light: {
4278
- color: theme.palette.backgroundColor[900],
4279
- backgroundColor: theme.palette.backgroundColor[200]
4278
+ color: theme.palette.textColor[900],
4279
+ backgroundColor: theme.palette.secondary[500]
4280
4280
  }
4281
4281
  },
4282
4282
  warning: {
@@ -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.mode === 'light' ? theme.palette.warning[50] : colorManipulator_js.alpha(theme.palette.warning[50], 0.5),
4289
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.warning[50] : colorManipulator_js.alpha(theme.palette.warning[400], 0.2),
4290
4290
  border: "1px solid " + theme.palette.warning[200]
4291
4291
  }
4292
4292
  },
@@ -4297,8 +4297,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4297
4297
  },
4298
4298
  light: {
4299
4299
  color: theme.palette.primary[500],
4300
- backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info[50], 0.5),
4301
- border: "1px solid " + theme.palette.info[200]
4300
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info[400], 0.2)
4302
4301
  }
4303
4302
  },
4304
4303
  primary: {
@@ -4308,8 +4307,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4308
4307
  },
4309
4308
  light: {
4310
4309
  color: theme.palette.primary[500],
4311
- backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info[50], 0.5),
4312
- border: "1px solid " + theme.palette.info[200]
4310
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : colorManipulator_js.alpha(theme.palette.info[400], 0.2)
4313
4311
  }
4314
4312
  },
4315
4313
  error: {
@@ -4319,8 +4317,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4319
4317
  },
4320
4318
  light: {
4321
4319
  color: theme.palette.error[400],
4322
- backgroundColor: theme.palette.mode === 'light' ? theme.palette.error[50] : colorManipulator_js.alpha(theme.palette.error[50], 0.5),
4323
- border: "1px solid " + theme.palette.error[200]
4320
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.error[50] : colorManipulator_js.alpha(theme.palette.error[400], 0.2)
4324
4321
  }
4325
4322
  },
4326
4323
  success: {
@@ -4330,8 +4327,7 @@ var colorModeConfig = function colorModeConfig(theme) {
4330
4327
  },
4331
4328
  light: {
4332
4329
  color: theme.palette.success[400],
4333
- backgroundColor: theme.palette.mode === 'light' ? theme.palette.success[50] : colorManipulator_js.alpha(theme.palette.success[50], 0.5),
4334
- border: "1px solid " + theme.palette.success[200]
4330
+ backgroundColor: theme.palette.mode === 'light' ? theme.palette.success[50] : colorManipulator_js.alpha(theme.palette.success[400], 0.2)
4335
4331
  }
4336
4332
  }
4337
4333
  };
@@ -5461,7 +5457,7 @@ var components$5 = {
5461
5457
  borderRadius: 8,
5462
5458
  padding: spacing(3),
5463
5459
  '& .MuiAlert-icon': ownerState !== null && ownerState !== void 0 && ownerState.color ? {
5464
- color: palette[ownerState.color].A100
5460
+ color: palette[ownerState.color][400]
5465
5461
  } : {},
5466
5462
  '& .MuiAlert-action': {
5467
5463
  paddingTop: 0,
@@ -5490,7 +5486,7 @@ var components$5 = {
5490
5486
  overflow: 'hidden',
5491
5487
  padding: 0,
5492
5488
  width: '100%',
5493
- color: palette.textColor.A80
5489
+ color: palette.textColor[900]
5494
5490
  }, _ref3[breakpoints.down('lg')] = {
5495
5491
  lineHeight: '20px'
5496
5492
  }, _ref3;
@@ -5507,7 +5503,7 @@ var components$5 = {
5507
5503
  var palette = _ref5.theme.palette,
5508
5504
  ownerState = _ref5.ownerState;
5509
5505
  return {
5510
- backgroundColor: palette.mode === 'light' ? palette[ownerState.color][50] : colorManipulator_js.alpha(palette[ownerState.color][50], 0.5)
5506
+ backgroundColor: palette.mode === 'light' ? palette[ownerState.color][50] : colorManipulator_js.alpha(palette[ownerState.color][400], 0.2)
5511
5507
  };
5512
5508
  },
5513
5509
  outlined: function outlined(_ref6) {