@royaloperahouse/harmonic 0.15.0-b → 0.15.0-d
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/components/atoms/ImageAspectRatioWrapper/ImageAspectRatioWrapper.d.ts +1 -1
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.d.ts +2 -2
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -1
- package/dist/harmonic.cjs.development.css +3 -3
- package/dist/harmonic.cjs.development.js +123 -174
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +124 -175
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/image.d.ts +15 -11
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ImageAspectRatioWrapperProps } from '../../../types/image';
|
|
3
|
-
declare const ImageAspectRatioWrapper: React.
|
|
3
|
+
declare const ImageAspectRatioWrapper: React.ForwardRefExoticComponent<ImageAspectRatioWrapperProps & React.RefAttributes<HTMLDivElement>>;
|
|
4
4
|
export default ImageAspectRatioWrapper;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { IImageWithCaptionProps } from '../../../types/image';
|
|
3
|
-
declare const ImageWithCaption:
|
|
3
|
+
declare const ImageWithCaption: React.FC<IImageWithCaptionProps>;
|
|
4
4
|
export default ImageWithCaption;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IImageWithCaptionWrapperProps } from '../../../types/image';
|
|
2
2
|
export declare const Wrapper: import("styled-components").StyledComponent<"figure", any, IImageWithCaptionWrapperProps, never>;
|
|
3
|
-
export declare const CaptionWrapper: import("styled-components").StyledComponent<
|
|
3
|
+
export declare const CaptionWrapper: import("styled-components").StyledComponent<"figcaption", any, {}, never>;
|
|
4
|
+
export declare const CaptionContext: import("styled-components").StyledComponent<({ children, color, tag: Tag, className }: import("../../../types/typography").ITaggedTypographyProps) => import("react").JSX.Element, any, {}, never>;
|
|
@@ -771,7 +771,7 @@
|
|
|
771
771
|
--rotator-button-hover-color: var(--color-base-white);
|
|
772
772
|
--rotator-button-hover-bg-color: var(--color-primary-red);
|
|
773
773
|
|
|
774
|
-
--carousel-image-caption-height:
|
|
774
|
+
--carousel-image-caption-height: 34px;
|
|
775
775
|
|
|
776
776
|
--line-height-listing: 36px;
|
|
777
777
|
|
|
@@ -790,7 +790,7 @@
|
|
|
790
790
|
--grid-margin: 20px;
|
|
791
791
|
--rotator-button-width: 40px;
|
|
792
792
|
--rotator-button-icon-width: 24px;
|
|
793
|
-
--carousel-image-caption-height:
|
|
793
|
+
--carousel-image-caption-height: 28px;
|
|
794
794
|
|
|
795
795
|
--line-height-listing: 34px;
|
|
796
796
|
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
--grid-margin: 32px;
|
|
809
809
|
--rotator-button-width: 44px;
|
|
810
810
|
--rotator-button-icon-width: 24px;
|
|
811
|
-
--carousel-image-caption-height:
|
|
811
|
+
--carousel-image-caption-height: 28px;
|
|
812
812
|
}
|
|
813
813
|
|
|
814
814
|
/* ----- Variables already used in Harmonic END ----- */
|