@threedddplus/logoeditor 0.0.13 → 0.0.15

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,5 @@
1
1
  import React from 'react';
2
- export declare const MiddleMenu: ({ onApply }: {
2
+ export declare const MiddleMenu: ({ onApply, onSave }: {
3
3
  onApply: any;
4
+ onSave: any;
4
5
  }) => React.JSX.Element;
@@ -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: ({ onSave }: {
4
+ onSave: any;
5
+ }) => React.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -7,13 +7,13 @@ import 'react-toastify/dist/ReactToastify.css';
7
7
  /**
8
8
  * A custom App component. Neat!
9
9
  */
10
- declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, customerId, closeMainModal, }: {
10
+ declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, customerId, onSave }: {
11
11
  stepperId: any;
12
12
  onApply: any;
13
13
  customLogoColorList: any;
14
14
  defaultColorList: any;
15
15
  logoData: any;
16
16
  customerId: any;
17
- closeMainModal: any;
17
+ onSave: any;
18
18
  }) => React.JSX.Element;
19
19
  export { LogoEditor, Components, use3dddPlus, services };