@rabex-kit/rabex-ui 0.1.53 → 0.1.55

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.
@@ -7,13 +7,10 @@ declare module '@mui/material/TextField' {
7
7
  md: true;
8
8
  lg: true;
9
9
  xl: true;
10
- small: true;
11
- medium: true;
12
10
  }
13
11
  }
14
12
  export declare type TextFieldProps = MuiTextFieldProps & {
15
13
  success?: boolean;
16
- size?: 'sm' | 'md' | 'lg' | 'xl' | 'small' | 'medium';
17
14
  fill?: boolean;
18
15
  helperText?: string | ReactNode;
19
16
  titleProps?: TypographyProps;
@@ -4,5 +4,16 @@ export declare type themeTypes = {
4
4
  direction?: Direction;
5
5
  deviceType?: 'mobile' | 'desktop';
6
6
  };
7
+ declare module '@mui/material/styles' {
8
+ interface BreakpointOverrides {
9
+ xs: true;
10
+ sm: true;
11
+ md: true;
12
+ lg: true;
13
+ xl: true;
14
+ xxl: true;
15
+ xxxl: true;
16
+ }
17
+ }
7
18
  declare const getDesignTokens: ({ deviceType, mode, direction }: themeTypes) => ThemeOptions;
8
19
  export default getDesignTokens;
@@ -4909,7 +4909,18 @@ var getDesignTokens = function getDesignTokens(_ref) {
4909
4909
  MuiLoadingButton: RabexLoadingButton.components
4910
4910
  }),
4911
4911
  palette: _extends({}, mode === 'light' ? createPalette(RabexLightPalette) : createPalette(RabexDarkPalette)),
4912
- typography: RabexTypography.typography
4912
+ typography: RabexTypography.typography,
4913
+ breakpoints: {
4914
+ values: {
4915
+ xs: 0,
4916
+ sm: 600,
4917
+ md: 900,
4918
+ lg: 1200,
4919
+ xl: 1440,
4920
+ xxl: 1536,
4921
+ xxxl: 1920
4922
+ }
4923
+ }
4913
4924
  };
4914
4925
  };
4915
4926