@rabex-kit/rabex-ui 0.0.5 → 0.0.6

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.
@@ -21,6 +21,8 @@ declare module '@mui/material/styles' {
21
21
  helperText: React.CSSProperties;
22
22
  inputLabel2: React.CSSProperties;
23
23
  body4: React.CSSProperties;
24
+ body5: React.CSSProperties;
25
+ paragaph: React.CSSProperties;
24
26
  }
25
27
  interface TypographyVariantsOptions {
26
28
  h1: React.CSSProperties;
@@ -43,6 +45,8 @@ declare module '@mui/material/styles' {
43
45
  helperText: React.CSSProperties;
44
46
  inputLabel2: React.CSSProperties;
45
47
  body4: React.CSSProperties;
48
+ body5: React.CSSProperties;
49
+ paragaph: React.CSSProperties;
46
50
  }
47
51
  }
48
52
  declare module '@mui/material/Typography' {
@@ -67,6 +71,8 @@ declare module '@mui/material/Typography' {
67
71
  helperText: true;
68
72
  inputLabel2: true;
69
73
  body4: true;
74
+ body5: true;
75
+ paragraph: true;
70
76
  }
71
77
  }
72
78
  declare const _default: {
@@ -118,6 +124,8 @@ declare const _default: {
118
124
  helperText: string;
119
125
  inputLabel2: string;
120
126
  body4: string;
127
+ body5: string;
128
+ paragraph: string;
121
129
  };
122
130
  };
123
131
  };
@@ -216,6 +224,16 @@ declare const _default: {
216
224
  lineHeight: string;
217
225
  fontFamily: string;
218
226
  };
227
+ body5: {
228
+ fontSize: string;
229
+ lineHeight: string;
230
+ fontFamily: string;
231
+ };
232
+ paragraph: {
233
+ fontSize: string;
234
+ lineHeight: string;
235
+ fontFamily: string;
236
+ };
219
237
  };
220
238
  };
221
239
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { TypographyProps as MuiTypographyProps } from '@mui/material';
3
3
  export declare type TypographyProps = Omit<MuiTypographyProps, 'variant' | 'weight' | 'component'> & {
4
- variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'title' | 'subtitle' | 'title2' | 'button' | 'body1' | 'largeButton' | 'inputLabel' | 'body2' | 'mediumButton' | 'subtitle2' | 'body3' | 'smallButton' | 'helperText' | 'inputLabel2' | 'body4';
4
+ variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'title' | 'subtitle' | 'title2' | 'button' | 'body1' | 'largeButton' | 'inputLabel' | 'body2' | 'mediumButton' | 'subtitle2' | 'body3' | 'smallButton' | 'helperText' | 'inputLabel2' | 'body4' | 'body5' | 'paragraph';
5
5
  weight?: 'bold' | 'semiBold' | 'regular' | 'light';
6
6
  component?: React.ElementType;
7
7
  };
@@ -2327,7 +2327,9 @@ var RabexTypography = {
2327
2327
  smallButton: 'span',
2328
2328
  helperText: 'span',
2329
2329
  inputLabel2: 'span',
2330
- body4: 'span'
2330
+ body4: 'span',
2331
+ body5: 'span',
2332
+ paragraph: 'span'
2331
2333
  }
2332
2334
  }
2333
2335
  },
@@ -2425,6 +2427,16 @@ var RabexTypography = {
2425
2427
  fontSize: '10px',
2426
2428
  lineHeight: '16px',
2427
2429
  fontFamily: 'Yekan, Arial'
2430
+ },
2431
+ body5: {
2432
+ fontSize: '12px',
2433
+ lineHeight: '24px',
2434
+ fontFamily: 'Yekan, Arial'
2435
+ },
2436
+ paragraph: {
2437
+ fontSize: '12px',
2438
+ lineHeight: '24px',
2439
+ fontFamily: 'Yekan, Arial'
2428
2440
  }
2429
2441
  }
2430
2442
  };