@royaloperahouse/chord 0.7.35 → 0.7.36
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 +36 -19
- 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 +36 -19
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/molecules/PageHeading/Stream/Stream.style.d.ts +1 -0
- package/dist/components/molecules/PromoWithTitle/PromoWithTitle.style.d.ts +5 -0
- package/dist/types/editorial.d.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const StreamWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { IEditorialGridProps } from '../../../types/editorial';
|
|
2
|
+
interface ITagProps {
|
|
3
|
+
marginBottom: number;
|
|
4
|
+
}
|
|
2
5
|
export declare const PromoWithTitleGrid: import("styled-components").StyledComponent<"div", any, IEditorialGridProps, never>;
|
|
3
6
|
export declare const PromoWithTitleImageWrapper: import("styled-components").StyledComponent<"div", any, IEditorialGridProps, never>;
|
|
4
7
|
export declare const PromoWithTitleContentWrapper: import("styled-components").StyledComponent<"div", any, IEditorialGridProps, never>;
|
|
@@ -6,3 +9,5 @@ export declare const PromoWithTitleContainer: import("styled-components").Styled
|
|
|
6
9
|
export declare const PromoWithTitleSubtitle: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
7
10
|
export declare const PromoWithTitleText: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
11
|
export declare const ButtonsContainer: import("styled-components").StyledComponent<"div", any, IEditorialGridProps, never>;
|
|
12
|
+
export declare const PromoWithTitleTag: import("styled-components").StyledComponent<"div", any, ITagProps, never>;
|
|
13
|
+
export {};
|
|
@@ -90,6 +90,14 @@ export interface IPromoWithTitleProps {
|
|
|
90
90
|
* Array of buttons props. First one should have PrimaryButton attributes, second one Tertiary button attributes
|
|
91
91
|
*/
|
|
92
92
|
links?: PromoLinks;
|
|
93
|
+
/**
|
|
94
|
+
* Array of tags in the editorial component
|
|
95
|
+
*/
|
|
96
|
+
aboveTitleTags?: string[];
|
|
97
|
+
/**
|
|
98
|
+
* Array of tags in the editorial component
|
|
99
|
+
*/
|
|
100
|
+
underSubTitleTags?: string[];
|
|
93
101
|
}
|
|
94
102
|
export interface IThemePageHeadingProps {
|
|
95
103
|
/**
|