@next-core/editor-bricks-helper 0.41.0 → 0.42.1

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.
@@ -107,8 +107,12 @@ export interface WorkbenchNodeData extends NodeInstance {
107
107
  id: string;
108
108
  }
109
109
  export interface WorkbenchNodeAdd {
110
- nodeData: WorkbenchNodeData;
111
- dragOverNodeInstanceId: string;
110
+ nodeData: WorkbenchNodeData & {
111
+ bricks: BrickConf[];
112
+ };
113
+ mountPoint: string;
114
+ dragOverInstanceId: string;
115
+ parentInstanceId: string;
112
116
  dragStatus: dragStatus;
113
117
  }
114
118
  export interface WorkbenchTreeNodeMoveProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/editor-bricks-helper",
3
- "version": "0.41.0",
3
+ "version": "0.42.1",
4
4
  "description": "Editor bricks helper",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/editor-bricks-helper",
6
6
  "license": "GPL-3.0",
@@ -30,7 +30,7 @@
30
30
  "classnames": "^2.3.1"
31
31
  },
32
32
  "devDependencies": {
33
- "@next-core/brick-kit": "^2.121.2",
33
+ "@next-core/brick-kit": "^2.121.3",
34
34
  "@next-core/brick-utils": "^2.37.17",
35
35
  "js-yaml": "^3.14.1",
36
36
  "lodash": "^4.17.21",
@@ -49,5 +49,5 @@
49
49
  "react-dnd-html5-backend": "*",
50
50
  "react-dom": "*"
51
51
  },
52
- "gitHead": "9ae0cc76cd7b13dd781b0209f1b92dc1c8b317eb"
52
+ "gitHead": "725f893030b7dcde9ebdcca0920dc4540dac19cc"
53
53
  }