@rabex-kit/rabex-ui 0.2.79 → 0.2.81

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.
@@ -5,6 +5,11 @@ declare const _default: {
5
5
  ownerState: any;
6
6
  theme: any;
7
7
  }) => {
8
+ marginLeft: number;
9
+ marginRight: number;
10
+ label: {
11
+ paddingRight: string;
12
+ };
8
13
  '&.error > .MuiCheckbox-root': {
9
14
  color: any;
10
15
  };
@@ -5445,19 +5445,19 @@ var RabexCheckbox = {
5445
5445
  color: theme.palette.base[400],
5446
5446
  '& .MuiSvgIcon-root': {
5447
5447
  fontSize: '16px',
5448
- borderRadius: '4px' // Optional: slight rounding for modern look
5448
+ borderRadius: '4px'
5449
5449
  },
5450
5450
  '&.Mui-checked': _extends({}, ownerState.color === 'secondary' && {
5451
- color: theme.palette.grayBackground.A100
5451
+ color: theme.palette.secondary[500]
5452
5452
  }),
5453
5453
  '&.Mui-disabled': {
5454
- color: theme.palette.grayBackground.A40
5454
+ color: theme.palette.base[300]
5455
5455
  },
5456
5456
  '&.error': {
5457
- color: theme.palette.error.main
5457
+ color: theme.palette.error[400]
5458
5458
  },
5459
5459
  '&.error + .MuiFormControlLabel-label': {
5460
- color: theme.palette.error.main
5460
+ color: theme.palette.error[400]
5461
5461
  }
5462
5462
  };
5463
5463
  }
@@ -5593,6 +5593,11 @@ var RabexFormControlLabel = {
5593
5593
  root: function root(_ref) {
5594
5594
  var theme = _ref.theme;
5595
5595
  return {
5596
+ marginLeft: 0,
5597
+ marginRight: 0,
5598
+ label: {
5599
+ paddingRight: '8px'
5600
+ },
5596
5601
  '&.error > .MuiCheckbox-root': {
5597
5602
  color: theme.palette.error.main
5598
5603
  },