@royaloperahouse/harmonic 0.11.0-j → 0.11.0-k

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 CHANGED
@@ -1,3 +1,6 @@
1
+ ## [0.11.0]
2
+ - CreditListing line groups
3
+
1
4
  ## [0.10.0]
2
5
  - Restyle Tables, add accessibility labels to the Pagination component
3
6
 
@@ -1,5 +1,4 @@
1
1
  import React from 'react';
2
2
  import { IPageHeadingPromoProps } from '../../../../types/impactHeader';
3
- import { ThemeChildProps } from '../../../../types/types';
4
- declare const PageHeadingPromo: React.FC<IPageHeadingPromoProps & ThemeChildProps>;
3
+ declare const PageHeadingPromo: React.FC<IPageHeadingPromoProps>;
5
4
  export default PageHeadingPromo;
@@ -1,8 +1,13 @@
1
- import { IAnchorTabArrowsBoxProps, IAnchorTabsListProps, IAnchorTabBarBorderProps } from '../../../types/navigation';
1
+ import { IAnchorTabsListProps, IAnchorTabBarBorderProps } from '../../../types/navigation';
2
2
  export declare const LIST_ITEM_GAP = 32;
3
3
  export declare const AnchorTabbarWrapper: import("styled-components").StyledComponent<"div", any, IAnchorTabBarBorderProps, never>;
4
4
  export declare const TabsGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
5
5
  export declare const TabsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
6
6
  export declare const TabsList: import("styled-components").StyledComponent<"ul", any, IAnchorTabsListProps, never>;
7
- export declare const ArrowsContainer: import("styled-components").StyledComponent<"div", any, IAnchorTabArrowsBoxProps, never>;
8
- export declare const ArrowWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
7
+ export declare const ArrowControls: import("styled-components").StyledComponent<({ onClickPrev, onClickNext, availablePrev, availableNext, className, }: import("../../../types/buttonTypes").RotatorButtonsProps) => import("react").JSX.Element, any, IAnchorTabBarBorderProps, never>;
8
+ export declare const ArrowsContainer: import("styled-components").StyledComponent<"div", any, {
9
+ withShadow?: boolean | undefined;
10
+ }, never>;
11
+ export declare const ArrowWrapper: import("styled-components").StyledComponent<"div", any, {
12
+ disabled: boolean;
13
+ }, never>;
@@ -751,6 +751,7 @@
751
751
  --button-tertiary-pressed-color: var(--color-rbo-black-pressed);
752
752
  --button-auxiliary-color: var(--color-primary-black);
753
753
  --button-auxiliary-bg-color: var(--color-base-transparent);
754
+ --button-anchor-tab-color: var(--color-primary-red);
754
755
 
755
756
  /* ----- Variables already used in Harmonic START ----- */
756
757
  --grid-column-gap: 36px;
@@ -1156,6 +1157,7 @@
1156
1157
  --button-tertiary-color: var(--color-primary-black);
1157
1158
  --button-tertiary-hover-color: var(--color-rbo-black-hovered);
1158
1159
  --button-tertiary-pressed-color: var(--color-rbo-black-pressed);
1160
+ --button-anchor-tab-color: var(--color-primary-black);
1159
1161
 
1160
1162
  --rotator-button-color: var(--color-base-black);
1161
1163
  --rotator-button-bg-color: var(--color-base-light-grey);
@@ -1198,6 +1200,7 @@
1198
1200
  --button-tertiary-color: var(--color-base-white);
1199
1201
  --button-tertiary-hover-color: var(--color-white-hovered);
1200
1202
  --button-tertiary-pressed-color: var(--color-white-pressed);
1203
+ --button-anchor-tab-color: var(--color-primary-black);
1201
1204
 
1202
1205
  --rotator-button-color: var(--color-primary-black);
1203
1206
  --rotator-button-bg-color: var(--color-base-light-grey);