@threedddplus/logoeditor 0.0.12 → 0.0.14

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.
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export interface toastGenProps {
3
+ type: 'Error' | 'Info' | 'Warning' | 'Success';
4
+ message: string;
5
+ }
6
+ export declare function CustomToast(type: 'info' | 'error' | 'warning' | 'success', message: string, toastId: number, style?: React.CSSProperties): React.Key;
7
+ export declare const toastGen: ({ type, message }: toastGenProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./customToast";
@@ -1,3 +1,5 @@
1
1
  import React from 'react';
2
2
  import './saveDesign.css';
3
- export declare const SaveDesign: () => React.JSX.Element;
3
+ export declare const SaveDesign: ({ onApply }: {
4
+ onApply: any;
5
+ }) => React.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -3,14 +3,16 @@ import './index.css';
3
3
  import { use3dddPlus } from './store';
4
4
  import * as Components from './components';
5
5
  import * as services from './services';
6
+ import 'react-toastify/dist/ReactToastify.css';
6
7
  /**
7
8
  * A custom App component. Neat!
8
9
  */
9
- declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, }: {
10
+ declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, customerId, }: {
10
11
  stepperId: any;
11
12
  onApply: any;
12
13
  customLogoColorList: any;
13
14
  defaultColorList: any;
14
15
  logoData: any;
16
+ customerId: any;
15
17
  }) => React.JSX.Element;
16
18
  export { LogoEditor, Components, use3dddPlus, services };