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