@codacy/ui-components 0.60.11-useyarncy6541.1.dcfa388 → 0.61.0
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.
|
@@ -16,7 +16,8 @@ interface BaseTextProps {
|
|
|
16
16
|
size?: TextSize;
|
|
17
17
|
color?: TextColor;
|
|
18
18
|
}
|
|
19
|
-
export interface ParagraphProps extends ContainerComponentProps, Omit<BoxProps, 'size'>, BaseTextProps {
|
|
19
|
+
export interface ParagraphProps extends ContainerComponentProps, Omit<BoxProps, 'size'>, Omit<BaseTextProps, 'size'> {
|
|
20
|
+
size?: Exclude<TextSize | undefined, 'xs'>;
|
|
20
21
|
maxLines?: number;
|
|
21
22
|
}
|
|
22
23
|
export interface CaptionProps extends ContainerComponentProps, Omit<BoxProps, 'size'>, BaseTextProps {
|