@chamn/engine 0.3.17 → 0.3.19

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.
@@ -10,8 +10,8 @@ export type DesignerExport = {
10
10
  getInstance: () => Designer | null;
11
11
  getDnd: () => DragAndDrop | undefined;
12
12
  selectNode: (nodeId: string) => Promise<boolean | undefined>;
13
- copyNode: (nodeId: string) => Promise<boolean>;
14
- deleteNode: (nodeId: string) => Promise<boolean>;
13
+ copyNode: (nodeId: string) => Promise<boolean | undefined>;
14
+ deleteNode: (nodeId: string) => Promise<boolean | undefined>;
15
15
  getSelectedNodeId: () => string | undefined;
16
16
  updatePage: (page: CPageDataType) => void;
17
17
  getComponentInstances: (id: string) => RenderInstance[];
@@ -1 +1 @@
1
- export declare const LOGGER: import('consola').ConsolaInstance;
1
+ export declare const LOGGER: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chamn/engine",
3
- "version": "0.3.17",
3
+ "version": "0.3.19",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -25,7 +25,7 @@
25
25
  "build": "cross-env BUILD_TYPE=PKG build-script --build",
26
26
  "build:w": "cross-env BUILD_TYPE=PKG build-script --build --watch",
27
27
  "build:analyze": "cross-env BUILD_TYPE=PKG build-script --build --analyze",
28
- "lint": "eslint --ext .tsx,.ts src/",
28
+ "lint": "eslint ./src",
29
29
  "prettier": "prettier --write ./src",
30
30
  "test": "jest",
31
31
  "storybook": "storybook dev -p 6006",
@@ -37,9 +37,9 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@ant-design/icons": "^5.4.0",
40
- "@chamn/layout": "0.3.17",
41
- "@chamn/model": "0.3.17",
42
- "@chamn/render": "0.3.17",
40
+ "@chamn/layout": "0.3.19",
41
+ "@chamn/model": "0.3.19",
42
+ "@chamn/render": "0.3.19",
43
43
  "@dagrejs/dagre": "^1.1.4",
44
44
  "@dnd-kit/core": "^6.0.7",
45
45
  "@dnd-kit/modifiers": "^6.0.1",
@@ -62,8 +62,8 @@
62
62
  },
63
63
  "devDependencies": {
64
64
  "@babel/core": "^7.21.0",
65
- "@chamn/build-script": "0.3.17",
66
- "@chamn/demo-page": "0.3.17",
65
+ "@chamn/build-script": "0.3.19",
66
+ "@chamn/demo-page": "0.3.19",
67
67
  "@chromatic-com/storybook": "^3.2.3",
68
68
  "@storybook/addon-essentials": "^8.4.7",
69
69
  "@storybook/addon-interactions": "^8.4.7",
@@ -82,8 +82,6 @@
82
82
  "@types/react-dom": "^18.0.6",
83
83
  "babel-loader": "^8.3.0",
84
84
  "cross-env": "^7.0.3",
85
- "eslint-plugin-react-hooks": "^4.6.0",
86
- "eslint-plugin-storybook": "^0.11.2",
87
85
  "prop-types": "^15.8.1",
88
86
  "rc-select": "^14.4.0",
89
87
  "re-resizable": "^6.9.9",
@@ -96,5 +94,5 @@
96
94
  "storybook": "^8.4.7"
97
95
  },
98
96
  "config": {},
99
- "gitHead": "90735357b8dacbac9170ded6e35a928ef7c4ca54"
97
+ "gitHead": "ee95ef20241971a8d7bc5144cc1bc1316d711877"
100
98
  }