@groupeactual/ui-kit 0.4.10 → 0.4.11

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.
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { TypographyProps } from '@mui/material';
3
3
  interface Props extends Omit<TypographyProps, 'variant'> {
4
- variant?: 'big_number' | 'body1_regular' | 'body1_medium' | 'body1_bold' | 'body2_regular' | 'body2_medium' | 'body2_bold' | 'caption' | 'button_notif' | 'h1' | 'h2' | 'h3' | 'h4';
4
+ variant?: 'bigNumber' | 'body1Regular' | 'body1Medium' | 'body1Bold' | 'body2Regular' | 'body2Medium' | 'body2Bold' | 'caption' | 'buttonNotif' | 'header1' | 'header2' | 'header3' | 'header4';
5
5
  component?: any;
6
6
  }
7
7
  declare const Text: (props: Props) => JSX.Element;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { TypographyProps } from '@mui/material';
3
3
  interface Props extends Omit<TypographyProps, 'variant'> {
4
- variant?: 'big_number' | 'body1_regular' | 'body1_medium' | 'body1_bold' | 'body2_regular' | 'body2_medium' | 'body2_bold' | 'caption' | 'button_notif' | 'h1' | 'h2' | 'h3' | 'h4';
4
+ variant?: 'bigNumber' | 'body1Regular' | 'body1Medium' | 'body1Bold' | 'body2Regular' | 'body2Medium' | 'body2Bold' | 'caption' | 'buttonNotif' | 'header1' | 'header2' | 'header3' | 'header4';
5
5
  component?: any;
6
6
  }
7
7
  declare const Text: (props: Props) => JSX.Element;
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ import { SxProps, Theme as Theme$1 } from '@mui/system';
8
8
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
9
9
 
10
10
  interface Props$7 extends Omit<TypographyProps, 'variant'> {
11
- variant?: 'big_number' | 'body1_regular' | 'body1_medium' | 'body1_bold' | 'body2_regular' | 'body2_medium' | 'body2_bold' | 'caption' | 'button_notif' | 'h1' | 'h2' | 'h3' | 'h4';
11
+ variant?: 'bigNumber' | 'body1Regular' | 'body1Medium' | 'body1Bold' | 'body2Regular' | 'body2Medium' | 'body2Bold' | 'caption' | 'buttonNotif' | 'header1' | 'header2' | 'header3' | 'header4';
12
12
  component?: any;
13
13
  }
14
14
  declare const Text: (props: Props$7) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "0.4.10",
3
+ "version": "0.4.11",
4
4
  "description": "A simple template for a custom React component library",
5
5
  "devDependencies": {
6
6
  "@babel/core": "^7.20.5",
@@ -2,19 +2,19 @@ import { Typography, TypographyProps } from '@mui/material';
2
2
 
3
3
  interface Props extends Omit<TypographyProps, 'variant'> {
4
4
  variant?:
5
- | 'big_number'
6
- | 'body1_regular'
7
- | 'body1_medium'
8
- | 'body1_bold'
9
- | 'body2_regular'
10
- | 'body2_medium'
11
- | 'body2_bold'
5
+ | 'bigNumber'
6
+ | 'body1Regular'
7
+ | 'body1Medium'
8
+ | 'body1Bold'
9
+ | 'body2Regular'
10
+ | 'body2Medium'
11
+ | 'body2Bold'
12
12
  | 'caption'
13
- | 'button_notif'
14
- | 'h1'
15
- | 'h2'
16
- | 'h3'
17
- | 'h4';
13
+ | 'buttonNotif'
14
+ | 'header1'
15
+ | 'header2'
16
+ | 'header3'
17
+ | 'header4';
18
18
  component?: any;
19
19
  }
20
20