@threedddplus/logoeditor 0.0.179 → 0.0.181

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.
@@ -6837,6 +6837,14 @@ var PopUpCanvas = function PopUpCanvas() {
6837
6837
  colorFill: use3dddPlus.getState().colorFill,
6838
6838
  id: use3dddPlus.getState().guid()
6839
6839
  });
6840
+ alltogetherObj._objects.map(function (node) {
6841
+ var _C = node.fill === 'transparent' || node.fill === '' || node.fill === undefined || typeof node.fill === 'string' && node.fill.includes('#') ? node.fill : RGBToHex(node.fill);
6842
+ if (_C) {
6843
+ node.set({
6844
+ fill: _C
6845
+ });
6846
+ }
6847
+ });
6840
6848
  alltogetherObj.setCoords();
6841
6849
  use3dddPlus.getState().forStoringAllObject(alltogetherObj); //for pushing the data into array for layers
6842
6850
  use3dddPlus.getState().forIconCapture();