mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-06-06 15:40:59 +00:00
Compare commits
7 Commits
main
...
v1.1.9-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bde669510 | ||
|
|
bf7b0b3877 | ||
|
|
60545d1c7f | ||
|
|
a3e014dced | ||
|
|
d428ca3b18 | ||
|
|
fbcb14b426 | ||
|
|
61fe7a7916 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-engine-docs",
|
||||
"version": "1.0.32",
|
||||
"version": "1.0.33",
|
||||
"description": "低代码引擎版本化文档",
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"lerna": "4.0.0",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true,
|
||||
"packages": [
|
||||
|
||||
@ -635,18 +635,20 @@ export default function createHelloWorldProjectBuilder() {
|
||||
template: CodeGen.solutionParts.icejs.template,
|
||||
plugins: {
|
||||
components: [
|
||||
CodeGen.plugins.react.reactCommonDeps(),
|
||||
CodeGen.plugins.common.esmodule({ fileType: 'jsx' }),
|
||||
CodeGen.plugins.react.containerClass(),
|
||||
CodeGen.plugins.react.containerInjectContext(),
|
||||
CodeGen.plugins.react.containerInjectUtils(),
|
||||
CodeGen.plugins.react.containerInjectDataSourceEngine(),
|
||||
CodeGen.plugins.react.containerInjectI18n(),
|
||||
CodeGen.plugins.react.containerInitState(),
|
||||
CodeGen.plugins.react.containerLifeCycle(),
|
||||
CodeGen.plugins.react.containerMethod(),
|
||||
CodeGen.plugins.icejs.reactCommonDeps(),
|
||||
CodeGen.plugins.common.esModule({ fileType: 'jsx' }),
|
||||
CodeGen.plugins.common.styleImport(),
|
||||
CodeGen.plugins.icejs.containerClass(),
|
||||
CodeGen.plugins.icejs.containerInjectContext(),
|
||||
CodeGen.plugins.icejs.containerInjectUtils(),
|
||||
CodeGen.plugins.icejs.containerInjectDataSourceEngine(),
|
||||
CodeGen.plugins.icejs.containerInjectI18n(),
|
||||
CodeGen.plugins.icejs.containerInjectConstants(),
|
||||
CodeGen.plugins.icejs.containerInitState(),
|
||||
CodeGen.plugins.icejs.containerLifeCycle(),
|
||||
CodeGen.plugins.icejs.containerMethod(),
|
||||
examplePlugin(),
|
||||
CodeGen.plugins.react.jsx({
|
||||
CodeGen.plugins.icejs.jsx({
|
||||
nodeTypeMapping: {
|
||||
Div: 'div',
|
||||
Component: 'div',
|
||||
@ -657,18 +659,20 @@ export default function createHelloWorldProjectBuilder() {
|
||||
CodeGen.plugins.style.css(),
|
||||
],
|
||||
pages: [
|
||||
CodeGen.plugins.react.reactCommonDeps(),
|
||||
CodeGen.plugins.common.esmodule({ fileType: 'jsx' }),
|
||||
CodeGen.plugins.react.containerClass(),
|
||||
CodeGen.plugins.react.containerInjectContext(),
|
||||
CodeGen.plugins.react.containerInjectUtils(),
|
||||
CodeGen.plugins.react.containerInjectDataSourceEngine(),
|
||||
CodeGen.plugins.react.containerInjectI18n(),
|
||||
CodeGen.plugins.react.containerInitState(),
|
||||
CodeGen.plugins.react.containerLifeCycle(),
|
||||
CodeGen.plugins.react.containerMethod(),
|
||||
CodeGen.plugins.icejs.reactCommonDeps(),
|
||||
CodeGen.plugins.common.esModule({ fileType: 'jsx' }),
|
||||
CodeGen.plugins.common.styleImport(),
|
||||
CodeGen.plugins.icejs.containerClass(),
|
||||
CodeGen.plugins.icejs.containerInjectContext(),
|
||||
CodeGen.plugins.icejs.containerInjectUtils(),
|
||||
CodeGen.plugins.icejs.containerInjectDataSourceEngine(),
|
||||
CodeGen.plugins.icejs.containerInjectI18n(),
|
||||
CodeGen.plugins.icejs.containerInjectConstants(),
|
||||
CodeGen.plugins.icejs.containerInitState(),
|
||||
CodeGen.plugins.icejs.containerLifeCycle(),
|
||||
CodeGen.plugins.icejs.containerMethod(),
|
||||
examplePlugin(),
|
||||
CodeGen.plugins.react.jsx({
|
||||
CodeGen.plugins.icejs.jsx({
|
||||
nodeTypeMapping: {
|
||||
Div: 'div',
|
||||
Component: 'div',
|
||||
@ -679,13 +683,13 @@ export default function createHelloWorldProjectBuilder() {
|
||||
CodeGen.plugins.style.css(),
|
||||
],
|
||||
router: [
|
||||
CodeGen.plugins.common.esmodule(),
|
||||
CodeGen.plugins.common.esModule(),
|
||||
CodeGen.solutionParts.icejs.plugins.router(),
|
||||
],
|
||||
entry: [CodeGen.solutionParts.icejs.plugins.entry()],
|
||||
constants: [CodeGen.plugins.project.constants()],
|
||||
utils: [
|
||||
CodeGen.plugins.common.esmodule(),
|
||||
CodeGen.plugins.common.esModule(),
|
||||
CodeGen.plugins.project.utils('react'),
|
||||
],
|
||||
i18n: [CodeGen.plugins.project.i18n()],
|
||||
|
||||
@ -45,6 +45,7 @@ export default function createIceJsProjectBuilder(
|
||||
containerInjectUtils(),
|
||||
containerInjectDataSourceEngine(),
|
||||
containerInjectI18n(),
|
||||
containerInjectConstants(),
|
||||
containerInitState(),
|
||||
containerLifeCycle(),
|
||||
containerMethod(),
|
||||
|
||||
@ -45,6 +45,7 @@ export default function createIceJsProjectBuilder(
|
||||
containerInjectUtils(),
|
||||
containerInjectDataSourceEngine(),
|
||||
containerInjectI18n(),
|
||||
containerInjectConstants(),
|
||||
containerInitState(),
|
||||
containerLifeCycle(),
|
||||
containerMethod(),
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-designer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Designer for Ali LowCode Engine",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -16,9 +16,9 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@alilc/build-plugin-lce": "^0.0.4-beta.2",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react": "^16",
|
||||
"react-dom": "^16.7.0",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-editor-core",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Core Api for Ali lowCode engine",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
@ -14,8 +14,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.19.16",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"debug": "^4.1.1",
|
||||
"intl-messageformat": "^9.3.1",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-editor-skeleton",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "alibaba lowcode editor skeleton",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -19,10 +19,10 @@
|
||||
],
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.20.12",
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react": "^16.8.1",
|
||||
"react-dom": "^16.8.1"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-engine",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "An enterprise-class low-code technology stack with scale-out design / 一套面向扩展设计的企业级低代码技术体系",
|
||||
"main": "lib/engine-core.js",
|
||||
"module": "es/engine-core.js",
|
||||
@ -19,15 +19,15 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.19.12",
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-engine-ext": "^1.0.0",
|
||||
"@alilc/lowcode-plugin-designer": "1.1.8",
|
||||
"@alilc/lowcode-plugin-outline-pane": "1.1.8",
|
||||
"@alilc/lowcode-shell": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-workspace": "1.1.8",
|
||||
"@alilc/lowcode-plugin-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-plugin-outline-pane": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-shell": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-workspace": "1.1.9-beta.1",
|
||||
"react": "^16.8.1",
|
||||
"react-dom": "^16.8.1"
|
||||
},
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-ignitor",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "点火器,bootstrap lce project",
|
||||
"main": "lib/index.js",
|
||||
"private": true,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-plugin-designer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "alibaba lowcode editor designer plugin",
|
||||
"files": [
|
||||
"es",
|
||||
@ -18,9 +18,9 @@
|
||||
],
|
||||
"author": "xiayang.xy",
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"react": "^16.8.1",
|
||||
"react-dom": "^16.8.1"
|
||||
},
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-plugin-outline-pane",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Outline pane for Ali lowCode engine",
|
||||
"files": [
|
||||
"es",
|
||||
@ -13,8 +13,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.19.16",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react": "^16",
|
||||
"react-dom": "^16.7.0",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-rax-renderer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Rax renderer for Ali lowCode engine",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -30,8 +30,8 @@
|
||||
"build": "build-scripts build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-renderer-core": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-renderer-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"rax-find-dom-node": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-rax-simulator-renderer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "rax simulator renderer for alibaba lowcode designer",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -13,10 +13,10 @@
|
||||
"build:umd": "build-scripts build --config build.umd.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-rax-renderer": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-rax-renderer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"driver-universal": "^3.1.3",
|
||||
"history": "^5.0.0",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-react-renderer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "react renderer for ali lowcode engine",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -22,7 +22,7 @@
|
||||
],
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.21.16",
|
||||
"@alilc/lowcode-renderer-core": "1.1.8"
|
||||
"@alilc/lowcode-renderer-core": "1.1.9-beta.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@alib/build-scripts": "^0.1.18",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-react-simulator-renderer",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "react simulator renderer for alibaba lowcode designer",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -17,10 +17,10 @@
|
||||
"test:cov": "build-scripts test --config build.test.json --jest-coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-react-renderer": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-react-renderer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"mobx": "^6.3.0",
|
||||
"mobx-react": "^7.2.0",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-renderer-core",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "renderer core",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
@ -16,8 +16,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-datasource-engine": "^1.0.0",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"debug": "^4.1.1",
|
||||
"fetch-jsonp": "^1.1.3",
|
||||
@ -32,7 +32,7 @@
|
||||
"devDependencies": {
|
||||
"@alib/build-scripts": "^0.1.18",
|
||||
"@alifd/next": "^1.26.0",
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@babel/plugin-transform-typescript": "^7.16.8",
|
||||
"@testing-library/react": "^11.2.2",
|
||||
"@types/classnames": "^2.2.11",
|
||||
|
||||
@ -193,8 +193,8 @@ export function leafWrapper(Comp: types.IBaseRenderComponent, {
|
||||
getNode,
|
||||
});
|
||||
|
||||
if (curDocumentId && cache.component.has(componentCacheId)) {
|
||||
return cache.component.get(componentCacheId);
|
||||
if (curDocumentId && cache.component.has(componentCacheId) && (cache.component.get(componentCacheId).Comp === Comp)) {
|
||||
return cache.component.get(componentCacheId).LeafWrapper;
|
||||
}
|
||||
|
||||
class LeafHoc extends Component {
|
||||
@ -590,7 +590,10 @@ export function leafWrapper(Comp: types.IBaseRenderComponent, {
|
||||
|
||||
LeafWrapper.displayName = (Comp as any).displayName;
|
||||
|
||||
cache.component.set(componentCacheId, LeafWrapper);
|
||||
cache.component.set(componentCacheId, {
|
||||
LeafWrapper,
|
||||
Comp,
|
||||
});
|
||||
|
||||
return LeafWrapper;
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-shell",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Shell Layer for AliLowCodeEngine",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -13,12 +13,12 @@
|
||||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-workspace": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-workspace": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"enzyme": "^3.11.0",
|
||||
"enzyme-adapter-react-16": "^1.15.5",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-types",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Types for Ali lowCode engine",
|
||||
"files": [
|
||||
"es",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-utils",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Utils for Ali lowCode engine",
|
||||
"files": [
|
||||
"lib",
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@alifd/next": "^1.19.16",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"lodash": "^4.17.21",
|
||||
"mobx": "^6.3.0",
|
||||
"react": "^16"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@alilc/lowcode-workspace",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9-beta.1",
|
||||
"description": "Shell Layer for AliLowCodeEngine",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -15,11 +15,11 @@
|
||||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@alilc/lowcode-designer": "1.1.8",
|
||||
"@alilc/lowcode-editor-core": "1.1.8",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.8",
|
||||
"@alilc/lowcode-types": "1.1.8",
|
||||
"@alilc/lowcode-utils": "1.1.8",
|
||||
"@alilc/lowcode-designer": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-core": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-editor-skeleton": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-types": "1.1.9-beta.1",
|
||||
"@alilc/lowcode-utils": "1.1.9-beta.1",
|
||||
"classnames": "^2.2.6",
|
||||
"enzyme": "^3.11.0",
|
||||
"enzyme-adapter-react-16": "^1.15.5",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user