@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/marketing-components",
3
- "version": "1.24.0",
3
+ "version": "1.25.0",
4
4
  "description": "A React based component library for marketing components to use with content stack pagebuilding",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -1,4 +0,0 @@
1
- /** Renders responsive media (image/gif/video) with lazy loading and fallback support. */
2
- import React from 'react';
3
- import { MediaProps } from './types';
4
- export declare function Media(props: Readonly<MediaProps>): React.ReactElement;
@@ -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';