@rabex-kit/rabex-ui 0.0.6 → 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.
@@ -3,7 +3,8 @@ declare const _default: {
3
3
  styleOverrides: {
4
4
  root: {
5
5
  borderRadius: number;
6
- padding: number;
6
+ paddingX: number;
7
+ paddingY: number;
7
8
  '&::before': {
8
9
  display: string;
9
10
  };
@@ -1,8 +1,8 @@
1
1
  import { Theme } from '@mui/material';
2
2
  declare module '@mui/material/InputBase' {
3
3
  interface InputBasePropsSizeOverrides {
4
- medium: true;
5
4
  small: true;
5
+ medium: true;
6
6
  large: true;
7
7
  }
8
8
  }
@@ -1279,7 +1279,7 @@ function _handleHelperColor(props, key) {
1279
1279
  * You can read Material-UI Input Documentation [here](https://mui.com/material-ui/api/input/).
1280
1280
  *
1281
1281
  * ```typescript
1282
- * import { Input } from '@rabex-kit/core';
1282
+ * import { Input } from '@rabex-kit/rabex-ui';
1283
1283
  * ```
1284
1284
  *
1285
1285
  *
@@ -4044,18 +4044,19 @@ var RabexAccordion = {
4044
4044
  components: {
4045
4045
  styleOverrides: {
4046
4046
  root: {
4047
- borderRadius: 16,
4048
- padding: 16,
4047
+ borderRadius: 12,
4048
+ paddingX: 16,
4049
+ paddingY: 12,
4049
4050
  '&::before': {
4050
4051
  display: 'none'
4051
4052
  },
4052
4053
  '&:first-of-type': {
4053
- borderTopRightRadius: 16,
4054
- borderTopLeftRadius: 16
4054
+ borderTopRightRadius: 12,
4055
+ borderTopLeftRadius: 12
4055
4056
  },
4056
4057
  '&:last-of-type': {
4057
- borderBottomRightRadius: 16,
4058
- borderBottomLeftRadius: 16
4058
+ borderBottomRightRadius: 12,
4059
+ borderBottomLeftRadius: 12
4059
4060
  }
4060
4061
  }
4061
4062
  }