@reapit/elements 3.8.7 → 3.8.8
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.
- package/dist/cjs/components/typography/__styles__/index.d.ts +1 -0
- package/dist/cjs/components/typography/typography.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/typography/__styles__/index.d.ts +1 -0
- package/dist/esm/components/typography/typography.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.css +55 -54
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export declare const elHasItalicText: import("@linaria/core").LinariaClassName;
|
|
|
7
7
|
export declare const elHasCenteredText: import("@linaria/core").LinariaClassName;
|
|
8
8
|
export declare const elHasSectionMargin: import("@linaria/core").LinariaClassName;
|
|
9
9
|
export declare const elHasDisabledText: import("@linaria/core").LinariaClassName;
|
|
10
|
+
export declare const elHasCapitalisedText: import("@linaria/core").LinariaClassName;
|
|
10
11
|
export declare const ElTitle: import("@linaria/core").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLHeadingElement> & import("react").HTMLAttributes<HTMLHeadingElement> & {
|
|
11
12
|
as?: import("react").ElementType<any> | undefined;
|
|
12
13
|
}>;
|
|
@@ -8,6 +8,7 @@ export interface TypographyProps extends HTMLAttributes<HTMLElement> {
|
|
|
8
8
|
hasCenteredText?: boolean;
|
|
9
9
|
hasRegularText?: boolean;
|
|
10
10
|
hasDisabledText?: boolean;
|
|
11
|
+
hasCapitalisedText?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare const Title: FC<TypographyProps>;
|
|
13
14
|
export declare const Subtitle: FC<TypographyProps>;
|