react-design-editor 0.0.60 → 0.0.61
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.
package/lib/handlers/Handler.js
CHANGED
|
@@ -868,6 +868,7 @@ class Handler {
|
|
|
868
868
|
type: obj.type,
|
|
869
869
|
nodeClazz: obj.nodeClazz,
|
|
870
870
|
configuration: obj.configuration,
|
|
871
|
+
descriptor: obj.descriptor,
|
|
871
872
|
properties: {
|
|
872
873
|
left: activeObject.left + activeObject.width / 2 + obj.left || 0,
|
|
873
874
|
top: activeObject.top + activeObject.height / 2 + obj.top || 0,
|
|
@@ -892,6 +893,7 @@ class Handler {
|
|
|
892
893
|
type: cloned.type,
|
|
893
894
|
nodeClazz: cloned.nodeClazz,
|
|
894
895
|
configuration: cloned.configuration,
|
|
896
|
+
descriptor: cloned.descriptor,
|
|
895
897
|
properties: {
|
|
896
898
|
left: cloned.left || 0,
|
|
897
899
|
top: cloned.top || 0,
|