@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?: '
|
|
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?: '
|
|
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?: '
|
|
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
|
@@ -2,19 +2,19 @@ import { Typography, TypographyProps } from '@mui/material';
|
|
|
2
2
|
|
|
3
3
|
interface Props extends Omit<TypographyProps, 'variant'> {
|
|
4
4
|
variant?:
|
|
5
|
-
| '
|
|
6
|
-
| '
|
|
7
|
-
| '
|
|
8
|
-
| '
|
|
9
|
-
| '
|
|
10
|
-
| '
|
|
11
|
-
| '
|
|
5
|
+
| 'bigNumber'
|
|
6
|
+
| 'body1Regular'
|
|
7
|
+
| 'body1Medium'
|
|
8
|
+
| 'body1Bold'
|
|
9
|
+
| 'body2Regular'
|
|
10
|
+
| 'body2Medium'
|
|
11
|
+
| 'body2Bold'
|
|
12
12
|
| 'caption'
|
|
13
|
-
| '
|
|
14
|
-
| '
|
|
15
|
-
| '
|
|
16
|
-
| '
|
|
17
|
-
| '
|
|
13
|
+
| 'buttonNotif'
|
|
14
|
+
| 'header1'
|
|
15
|
+
| 'header2'
|
|
16
|
+
| 'header3'
|
|
17
|
+
| 'header4';
|
|
18
18
|
component?: any;
|
|
19
19
|
}
|
|
20
20
|
|