@chamn/engine 0.0.37 → 0.0.40
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/dist/core/assetPackagesListManage.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +35 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3491 -3489
- package/dist/index.mjs.map +1 -1
- package/dist/plugins/Designer/components/Canvas/index.d.ts +0 -2
- package/package.json +7 -7
|
@@ -23,7 +23,6 @@ type DesignerStateType = {
|
|
|
23
23
|
dropViewRender: AdvanceCustom['dropViewRender'] | null;
|
|
24
24
|
ghostView: React.ReactNode;
|
|
25
25
|
portalView: React.ReactNode;
|
|
26
|
-
assets: AssetPackage[];
|
|
27
26
|
};
|
|
28
27
|
export declare class Designer extends React.Component<DesignerPropsType, DesignerStateType> {
|
|
29
28
|
layoutRef: React.RefObject<Layout>;
|
|
@@ -38,7 +37,6 @@ export declare class Designer extends React.Component<DesignerPropsType, Designe
|
|
|
38
37
|
*/
|
|
39
38
|
updateRenderComponents(newComponentMap?: Record<string, any>): Promise<void>;
|
|
40
39
|
componentDidMount(): void;
|
|
41
|
-
updateAssets(assets: AssetPackage[]): void;
|
|
42
40
|
reloadRender({ assets }: {
|
|
43
41
|
assets?: AssetPackage[];
|
|
44
42
|
}): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chamn/engine",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@ant-design/icons": "^4.8.0",
|
|
41
|
-
"@chamn/layout": "^0.0.
|
|
42
|
-
"@chamn/model": "^0.0.
|
|
43
|
-
"@chamn/render": "^0.0.
|
|
41
|
+
"@chamn/layout": "^0.0.40",
|
|
42
|
+
"@chamn/model": "^0.0.40",
|
|
43
|
+
"@chamn/render": "^0.0.40",
|
|
44
44
|
"@dnd-kit/core": "^6.0.7",
|
|
45
45
|
"@dnd-kit/modifiers": "^6.0.1",
|
|
46
46
|
"@dnd-kit/sortable": "^7.0.2",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@babel/core": "^7.21.0",
|
|
63
|
-
"@chamn/build-script": "^0.0.
|
|
64
|
-
"@chamn/demo-page": "^0.0.
|
|
63
|
+
"@chamn/build-script": "^0.0.40",
|
|
64
|
+
"@chamn/demo-page": "^0.0.40",
|
|
65
65
|
"@storybook/addon-docs": "^7.4.0",
|
|
66
66
|
"@storybook/addon-essentials": "^7.4.0",
|
|
67
67
|
"@storybook/addon-interactions": "^7.4.0",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"storybook": "^7.4.0"
|
|
95
95
|
},
|
|
96
96
|
"config": {},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "90ff585994d4efdb81d121dfe7e205ce2f250186"
|
|
98
98
|
}
|