@royaloperahouse/chord 1.4.0 → 1.5.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.
- package/CHANGELOG.md +3 -0
- package/dist/chord.cjs.development.js +21 -7
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +21 -7
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/molecules/PageHeading/PageHeading.style.d.ts +6 -3
- package/package.json +1 -1
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface IPageHeadingWrapperProps {
|
|
2
|
+
isPageHeadingWithoutTitle?: boolean;
|
|
3
|
+
}
|
|
4
|
+
export declare const PageHeadingWrapper: import("styled-components").StyledComponent<"div", any, IPageHeadingWrapperProps, never>;
|
|
2
5
|
export declare const PageHeadingGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
-
export declare const TitleWrapper: import("styled-components").StyledComponent<"div", any,
|
|
4
|
-
export declare const ChildrenWrapper: import("styled-components").StyledComponent<"div", any,
|
|
6
|
+
export declare const TitleWrapper: import("styled-components").StyledComponent<"div", any, IPageHeadingWrapperProps, never>;
|
|
7
|
+
export declare const ChildrenWrapper: import("styled-components").StyledComponent<"div", any, IPageHeadingWrapperProps, never>;
|
|
5
8
|
export declare const TextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
9
|
export declare const LogoWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
10
|
export declare const ButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|