easy-email-pro-kit 0.9.2 → 0.10.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.
@@ -1,4 +1,3 @@
1
- export { Responsive } from "./Responsive";
2
1
  export * from "./constants";
3
2
  export * from "./typings";
4
3
  import { ElementPlugin } from "easy-email-pro-core";
@@ -1,4 +1,3 @@
1
- export { Responsive } from "./Responsive";
2
1
  export * from "./constants";
3
2
  export * from "./typings";
4
3
  import { ElementPlugin } from "easy-email-pro-core";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-email-pro-kit",
3
- "version": "0.9.2",
3
+ "version": "0.10.0",
4
4
  "description": "",
5
5
  "files": [
6
6
  "lib"
@@ -1,10 +0,0 @@
1
- import React from "react";
2
- export interface ResponsiveElementProps {
3
- desktop: React.FC<{
4
- children?: React.ReactElement;
5
- }>;
6
- mobile: React.FC<{
7
- children?: React.ReactElement;
8
- }>;
9
- }
10
- export declare function ResponsiveElement(props: ResponsiveElementProps): JSX.Element;
@@ -1,8 +0,0 @@
1
- import { ResponsivePlugin } from "easy-email-pro-core";
2
- export declare const HIDE_DESKTOP_BLOCK_CLASS_NAME = "hide-desktop-block";
3
- export declare const HIDE_MOBILE_BLOCK_CLASS_NAME = "hide-mobile-block";
4
- export declare const HIDE_DESKTOP_INLINE_BLOCK_CLASS_NAME = "hide-desktop-inline-block";
5
- export declare const HIDE_MOBILE_INLINE_BLOCK_CLASS_NAME = "hide-mobile-inline-block";
6
- export declare class Responsive extends ResponsivePlugin {
7
- generateResponsive: ResponsivePlugin["generateResponsive"];
8
- }