@zhubangyun/lowcode-core 5.3.183 → 5.3.184
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/es/components/react-render/index.js +0 -1
- package/es/index.js +3 -0
- package/es/utils/designer/assets/assets.data.base.js +2 -1
- package/es/utils/designer/assets/assets.typing.d.ts +1 -0
- package/lib/components/react-render/index.js +0 -1
- package/lib/index.js +3 -1
- package/lib/utils/designer/assets/assets.data.base.js +2 -1
- package/lib/utils/designer/assets/assets.typing.d.ts +1 -0
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -4,4 +4,7 @@ export { RestFormApi } from "./utils/form/form.api";
|
|
|
4
4
|
export { Layout } from "./components/layout";
|
|
5
5
|
export { SchemaRender } from "./components/schema-render";
|
|
6
6
|
export { ReactRender } from "./components/react-render";
|
|
7
|
+
|
|
8
|
+
// @ts-ignore
|
|
9
|
+
window.utils = utils;
|
|
7
10
|
export { utils };
|
|
@@ -18,7 +18,7 @@ var BaseAssets = {
|
|
|
18
18
|
"library": "antd",
|
|
19
19
|
"id": "antd",
|
|
20
20
|
"external": true,
|
|
21
|
-
"urls": ["https://cdn.zhiyunhe.com/plugin/antd/5.17.0/antd.min.js", "https://cdn.zhiyunhe.com/plugin/antd/5.17.0/reset.min.css", "https://cdn.zhiyunhe.com/plugin/antdIcon/1.0.0/antdIcon.min.js"]
|
|
21
|
+
"urls": ["https://cdn.zhiyunhe.com/plugin/antd/5.17.0/antd.min.js", "https://cdn.zhiyunhe.com/plugin/antd/5.17.0/reset.min.css", "https://cdn.zhiyunhe.com/plugin/antdIcon/1.0.0/antdIcon.min.js", "https://cdn.zhiyunhe.com/plugin/lowcode/core/index.js"]
|
|
22
22
|
}, {
|
|
23
23
|
"package": "root-material",
|
|
24
24
|
"version": "0.1.0",
|
|
@@ -35,6 +35,7 @@ var BaseAssets = {
|
|
|
35
35
|
"library": "AntdProMaterial",
|
|
36
36
|
"urls": ["https://cdn.zhiyunhe.com/plugin/lowcode/materials/antd-pro/view.js", "https://cdn.zhiyunhe.com/plugin/lowcode/materials/antd-pro/view.css"]
|
|
37
37
|
}],
|
|
38
|
+
utils: [],
|
|
38
39
|
"components": [],
|
|
39
40
|
"sort": {
|
|
40
41
|
"categoryList": ["布局", "通用", "导航", "数据录入", "数据展示", "反馈", "大屏组件", "图表", "基础元素", "表格类", "表单详情类", "帮助类", "对话框类", "业务类", "引导", "信息输入", "信息展示", "信息反馈", "布局容器类", "增强组件", "工具组件"],
|
|
@@ -30,7 +30,6 @@ var ReactRender = exports.ReactRender = /*#__PURE__*/function (_PureComponent) {
|
|
|
30
30
|
key: this.key
|
|
31
31
|
}, this.props, {
|
|
32
32
|
ref: function ref(node) {
|
|
33
|
-
console.log(node);
|
|
34
33
|
_this2.node = node === null || node === void 0 ? void 0 : node.__ref;
|
|
35
34
|
},
|
|
36
35
|
thisRequiredInJSE: true,
|
package/lib/index.js
CHANGED
|
@@ -14,4 +14,6 @@ exports.Layout = _layout.Layout;
|
|
|
14
14
|
var _schemaRender = require("./components/schema-render");
|
|
15
15
|
exports.SchemaRender = _schemaRender.SchemaRender;
|
|
16
16
|
var _reactRender = require("./components/react-render");
|
|
17
|
-
exports.ReactRender = _reactRender.ReactRender;
|
|
17
|
+
exports.ReactRender = _reactRender.ReactRender;
|
|
18
|
+
// @ts-ignore
|
|
19
|
+
window.utils = _utils["default"];
|
|
@@ -22,7 +22,7 @@ var BaseAssets = {
|
|
|
22
22
|
"library": "antd",
|
|
23
23
|
"id": "antd",
|
|
24
24
|
"external": true,
|
|
25
|
-
"urls": ["https://cdn.zhiyunhe.com/plugin/antd/5.17.0/antd.min.js", "https://cdn.zhiyunhe.com/plugin/antd/5.17.0/reset.min.css", "https://cdn.zhiyunhe.com/plugin/antdIcon/1.0.0/antdIcon.min.js"]
|
|
25
|
+
"urls": ["https://cdn.zhiyunhe.com/plugin/antd/5.17.0/antd.min.js", "https://cdn.zhiyunhe.com/plugin/antd/5.17.0/reset.min.css", "https://cdn.zhiyunhe.com/plugin/antdIcon/1.0.0/antdIcon.min.js", "https://cdn.zhiyunhe.com/plugin/lowcode/core/index.js"]
|
|
26
26
|
}, {
|
|
27
27
|
"package": "root-material",
|
|
28
28
|
"version": "0.1.0",
|
|
@@ -39,6 +39,7 @@ var BaseAssets = {
|
|
|
39
39
|
"library": "AntdProMaterial",
|
|
40
40
|
"urls": ["https://cdn.zhiyunhe.com/plugin/lowcode/materials/antd-pro/view.js", "https://cdn.zhiyunhe.com/plugin/lowcode/materials/antd-pro/view.css"]
|
|
41
41
|
}],
|
|
42
|
+
utils: [],
|
|
42
43
|
"components": [],
|
|
43
44
|
"sort": {
|
|
44
45
|
"categoryList": ["布局", "通用", "导航", "数据录入", "数据展示", "反馈", "大屏组件", "图表", "基础元素", "表格类", "表单详情类", "帮助类", "对话框类", "业务类", "引导", "信息输入", "信息展示", "信息反馈", "布局容器类", "增强组件", "工具组件"],
|