@threedddplus/logoeditor 0.0.200 → 0.0.203

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,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import 'react-toastify/dist/ReactToastify.css';
3
3
  import './index.css';
4
- declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, customerId, onSaveLogo, onClose, }: {
4
+ declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultColorList, logoData, customerId, onSaveLogo, onClose, options }: {
5
5
  stepperId: any;
6
6
  onApply: any;
7
7
  customLogoColorList: any;
@@ -10,5 +10,6 @@ declare const LogoEditor: ({ stepperId, onApply, customLogoColorList, defaultCol
10
10
  customerId: any;
11
11
  onSaveLogo: any;
12
12
  onClose: any;
13
+ options?: {};
13
14
  }) => React.JSX.Element;
14
15
  export default LogoEditor;