@nuskin/marketing-components 1.24.0 → 1.25.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/dist/bynder-media/BynderMedia.styled.d.ts +16 -0
- package/dist/bynder-media/types.d.ts +7 -0
- package/dist/content-card/types.d.ts +7 -26
- package/dist/content-card/utils/helpers.d.ts +15 -4
- package/dist/hero-banner/HeroBanner.styled.d.ts +4 -8
- package/dist/hero-banner/helpers.d.ts +0 -11
- package/dist/hero-banner/types.d.ts +3 -12
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/content-card/Media.d.ts +0 -4
- package/dist/content-card/Media.styled.d.ts +0 -30
- package/dist/content-card/specs/Media.spec.d.ts +0 -1
- package/dist/hero-banner/components/Media.d.ts +0 -8
- package/dist/hero-banner/components/specs/Media.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export declare const MediaContainer: import("@emotion/styled").StyledComponent<{
|
|
2
|
-
theme?: import("@emotion/react").Theme;
|
|
3
|
-
as?: React.ElementType;
|
|
4
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
|
-
export declare const StyledImage: import("@emotion/styled").StyledComponent<{
|
|
6
|
-
theme?: import("@emotion/react").Theme;
|
|
7
|
-
as?: React.ElementType;
|
|
8
|
-
} & {
|
|
9
|
-
$mediaStyle?: string;
|
|
10
|
-
$mediaHeight?: number;
|
|
11
|
-
}, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
12
|
-
export declare const StyledVideo: import("@emotion/styled").StyledComponent<{
|
|
13
|
-
theme?: import("@emotion/react").Theme;
|
|
14
|
-
as?: React.ElementType;
|
|
15
|
-
} & {
|
|
16
|
-
$mediaHeight?: number;
|
|
17
|
-
$mediaStyle?: string;
|
|
18
|
-
}, import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, {}>;
|
|
19
|
-
export declare const FallbackMessage: import("@emotion/styled").StyledComponent<{
|
|
20
|
-
theme?: import("@emotion/react").Theme;
|
|
21
|
-
as?: React.ElementType;
|
|
22
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
23
|
-
export declare const PictureElement: import("@emotion/styled").StyledComponent<{
|
|
24
|
-
theme?: import("@emotion/react").Theme;
|
|
25
|
-
as?: React.ElementType;
|
|
26
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
|
|
27
|
-
export declare const SourceElement: import("@emotion/styled").StyledComponent<{
|
|
28
|
-
theme?: import("@emotion/react").Theme;
|
|
29
|
-
as?: React.ElementType;
|
|
30
|
-
}, import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, {}>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import '@testing-library/jest-dom';
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ParsedMedia } from '../helpers';
|
|
3
|
-
interface MediaProps {
|
|
4
|
-
parsedMedia: ParsedMedia | null;
|
|
5
|
-
mediaAttributes?: Record<string, unknown>;
|
|
6
|
-
}
|
|
7
|
-
export declare const Media: React.ForwardRefExoticComponent<MediaProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import '@testing-library/jest-dom';
|