@rabex-kit/rabex-ui 0.0.5 → 0.0.7

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.
@@ -1274,7 +1274,7 @@ function _handleHelperColor(props, key) {
1274
1274
  * You can read Material-UI Input Documentation [here](https://mui.com/material-ui/api/input/).
1275
1275
  *
1276
1276
  * ```typescript
1277
- * import { Input } from '@rabex-kit/core';
1277
+ * import { Input } from '@rabex-kit/rabex-ui';
1278
1278
  * ```
1279
1279
  *
1280
1280
  *
@@ -2322,7 +2322,9 @@ var RabexTypography = {
2322
2322
  smallButton: 'span',
2323
2323
  helperText: 'span',
2324
2324
  inputLabel2: 'span',
2325
- body4: 'span'
2325
+ body4: 'span',
2326
+ body5: 'span',
2327
+ paragraph: 'span'
2326
2328
  }
2327
2329
  }
2328
2330
  },
@@ -2420,6 +2422,16 @@ var RabexTypography = {
2420
2422
  fontSize: '10px',
2421
2423
  lineHeight: '16px',
2422
2424
  fontFamily: 'Yekan, Arial'
2425
+ },
2426
+ body5: {
2427
+ fontSize: '12px',
2428
+ lineHeight: '24px',
2429
+ fontFamily: 'Yekan, Arial'
2430
+ },
2431
+ paragraph: {
2432
+ fontSize: '12px',
2433
+ lineHeight: '24px',
2434
+ fontFamily: 'Yekan, Arial'
2423
2435
  }
2424
2436
  }
2425
2437
  };
@@ -4027,18 +4039,19 @@ var RabexAccordion = {
4027
4039
  components: {
4028
4040
  styleOverrides: {
4029
4041
  root: {
4030
- borderRadius: 16,
4031
- padding: 16,
4042
+ borderRadius: 12,
4043
+ paddingX: 16,
4044
+ paddingY: 12,
4032
4045
  '&::before': {
4033
4046
  display: 'none'
4034
4047
  },
4035
4048
  '&:first-of-type': {
4036
- borderTopRightRadius: 16,
4037
- borderTopLeftRadius: 16
4049
+ borderTopRightRadius: 12,
4050
+ borderTopLeftRadius: 12
4038
4051
  },
4039
4052
  '&:last-of-type': {
4040
- borderBottomRightRadius: 16,
4041
- borderBottomLeftRadius: 16
4053
+ borderBottomRightRadius: 12,
4054
+ borderBottomLeftRadius: 12
4042
4055
  }
4043
4056
  }
4044
4057
  }