@royaloperahouse/chord 0.7.7 → 0.7.10
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 +12 -0
- package/dist/chord.cjs.development.js +92 -73
- 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 +92 -73
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/organisms/Carousel/Carousel.style.d.ts +1 -0
- package/dist/components/organisms/HighlightsCarousel/HighlightsCarousel.style.d.ts +1 -0
- package/dist/components/organisms/Navigation/Navigation.style.d.ts +2 -0
- package/dist/components/organisms/TitleWithCTA/TitleWithCTA.style.d.ts +6 -3
- package/dist/types/navigation.d.ts +16 -0
- package/package.json +1 -1
|
@@ -3,3 +3,4 @@ export declare const CarouselWrapper: import("styled-components").StyledComponen
|
|
|
3
3
|
export declare const TitleButtonsGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const TitleWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
5
|
export declare const ButtonsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
+
export declare const TitleGridItem: import("styled-components").StyledComponent<"div", any, import("../../../types/types").IGridItemProps, never>;
|
|
@@ -8,3 +8,4 @@ export declare const InfoLinkWrapper: import("styled-components").StyledComponen
|
|
|
8
8
|
export declare const CarouselWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
9
|
export declare const RotatorButtonsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
10
|
export declare const RotatorButtonsWrapperMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
|
+
export declare const HtmlBodyText: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { INavigationWrapperProps } from '../../../types/navigation';
|
|
2
|
+
export declare const NavigationWrapper: import("styled-components").StyledComponent<"div", any, INavigationWrapperProps, never>;
|
|
1
3
|
export declare const FullScreenContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
4
|
export declare const NavigationGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
5
|
export declare const SearchBackground: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { ITitleCTAProps } from '../../../types/navigation';
|
|
2
|
+
import { ITitleCTAProps, ITitleCTAGridItemProps } from '../../../types/navigation';
|
|
3
3
|
export declare const TitleCTAGridWrapper: import("styled-components").StyledComponent<"div", any, ITitleCTAProps, never>;
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const TitleCTAGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const TitleCTAGridItem: import("styled-components").StyledComponent<"div", any, ITitleCTAGridItemProps, never>;
|
|
5
6
|
export declare const AnchorTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
7
|
export declare const GridItemTitleWrapper: import("styled-components").StyledComponent<"div", any, import("../../../types/types").IGridItemProps, never>;
|
|
7
|
-
export declare const
|
|
8
|
+
export declare const ButtonsDesktopWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
9
|
export declare const ButtonsMobileWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
10
|
export declare const PrimaryButtonReverse: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../../../types/buttonTypes").IPrimaryButtonProps>, any, {}, never>;
|
|
11
|
+
export declare const MessageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
|
+
export declare const MessageWrapperMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -64,6 +64,12 @@ export interface ISearchProps {
|
|
|
64
64
|
*/
|
|
65
65
|
colorPrimary?: string;
|
|
66
66
|
}
|
|
67
|
+
export interface INavigationWrapperProps {
|
|
68
|
+
/**
|
|
69
|
+
* True if menu is open
|
|
70
|
+
*/
|
|
71
|
+
isMenuOpen?: boolean;
|
|
72
|
+
}
|
|
67
73
|
export interface INavTopProps {
|
|
68
74
|
children?: ReactNode;
|
|
69
75
|
/**
|
|
@@ -231,6 +237,16 @@ export interface ITitleCTAProps {
|
|
|
231
237
|
* Boolean to determine if is sticky
|
|
232
238
|
*/
|
|
233
239
|
sticky?: boolean;
|
|
240
|
+
/**
|
|
241
|
+
* Text in replacement of links
|
|
242
|
+
*/
|
|
243
|
+
message?: string;
|
|
244
|
+
}
|
|
245
|
+
export interface ITitleCTAGridItemProps {
|
|
246
|
+
/**
|
|
247
|
+
* Text placed in the anchor bar component
|
|
248
|
+
*/
|
|
249
|
+
title?: string;
|
|
234
250
|
}
|
|
235
251
|
export interface IAnchorTabsListProps {
|
|
236
252
|
/**
|