From 5a22794e7bd65b30f4205abf05ac50943277f287 Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:32:55 +0800 Subject: [PATCH 01/11] chore: publish --- packages/editor-core/package.json | 2 +- packages/editor-skeleton/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index c5c46418c..9f6a0e6dc 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor core", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 82cdf2609..d070c85ef 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", From df955e1db90ff104cd11160def80113cfd6faccc Mon Sep 17 00:00:00 2001 From: "zude.hzd" Date: Mon, 30 Mar 2020 20:42:00 +0800 Subject: [PATCH 02/11] add variable bind dialog --- packages/demo/src/config/components.js | 23 +++ packages/demo/src/editor/config/components.js | 4 +- packages/demo/src/editor/config/skeleton.js | 7 + .../plugin-variable-bind-dialog/README.md | 1 + .../plugin-variable-bind-dialog/build.json | 9 + .../plugin-variable-bind-dialog/package.json | 38 ++++ .../src/index.scss | 90 ++++++++++ .../plugin-variable-bind-dialog/src/index.tsx | 166 ++++++++++++++++++ .../plugin-variable-bind-dialog/tsconfig.json | 9 + 9 files changed, 346 insertions(+), 1 deletion(-) create mode 100644 packages/demo/src/config/components.js create mode 100644 packages/plugin-variable-bind-dialog/README.md create mode 100644 packages/plugin-variable-bind-dialog/build.json create mode 100644 packages/plugin-variable-bind-dialog/package.json create mode 100644 packages/plugin-variable-bind-dialog/src/index.scss create mode 100644 packages/plugin-variable-bind-dialog/src/index.tsx create mode 100644 packages/plugin-variable-bind-dialog/tsconfig.json diff --git a/packages/demo/src/config/components.js b/packages/demo/src/config/components.js new file mode 100644 index 000000000..731c2f6a5 --- /dev/null +++ b/packages/demo/src/config/components.js @@ -0,0 +1,23 @@ +import undoRedo from '@ali/lowcode-plugin-undo-redo'; +import zhEn from '@ali/lowcode-plugin-zh-en'; +import logo from '@ali/lowcode-plugin-sample-logo'; +import SamplePreview from '@ali/lowcode-plugin-sample-preview'; +import Designer from '@ali/lowcode-plugin-designer'; +import SettingsPane from '@ali/lowcode-plugin-settings-pane'; +import componentsPane from '@ali/lowcode-plugin-components-pane'; +import OutlinePane from '@ali/lowcode-plugin-outline-pane'; +import EventBindDialog from '@ali/lowcode-plugin-event-bind-dialog'; +import VariableBindDialog from '@ali/lowcode-plugin-variable-bind-dialog'; +import { PluginFactory } from '@ali/lowcode-editor-core'; +export default { + undoRedo: PluginFactory(undoRedo), + zhEn: PluginFactory(zhEn), + designer: PluginFactory(Designer), + componentsPane: PluginFactory(componentsPane), + settingsPane: PluginFactory(SettingsPane), + outlinePane: PluginFactory(OutlinePane), + eventBindDialog:PluginFactory(EventBindDialog), + variableBindDialog:PluginFactory(VariableBindDialog), + logo: PluginFactory(logo), + samplePreview: PluginFactory(SamplePreview) +}; diff --git a/packages/demo/src/editor/config/components.js b/packages/demo/src/editor/config/components.js index 87abd9c01..9834f2861 100644 --- a/packages/demo/src/editor/config/components.js +++ b/packages/demo/src/editor/config/components.js @@ -6,7 +6,8 @@ import designer from '@ali/lowcode-plugin-designer'; import settingsPane from '@ali/lowcode-plugin-settings-pane'; import componentsPane from '@ali/lowcode-plugin-components-pane'; import outlinePane from '@ali/lowcode-plugin-outline-pane'; -import eventBindDialog from '@ali/lowcode-plugin-event-bind-dialog' +import eventBindDialog from '@ali/lowcode-plugin-event-bind-dialog'; +import variableBindDialog from '@ali/lowcode-plugin-variable-bind-dialog' export default { undoRedo, zhEn, @@ -15,6 +16,7 @@ export default { settingsPane, outlinePane, eventBindDialog, + variableBindDialog, logo, samplePreview }; diff --git a/packages/demo/src/editor/config/skeleton.js b/packages/demo/src/editor/config/skeleton.js index 78f7a0a61..3cd7b93c1 100644 --- a/packages/demo/src/editor/config/skeleton.js +++ b/packages/demo/src/editor/config/skeleton.js @@ -131,6 +131,13 @@ export default { package: '@ali/lowcode-plugin-event-bind-dialog', version: '1.0.0' } + }, + { + pluginKey: 'variableBindDialog', + config: { + package: '@ali/lowcode-plugin-variable-bind-dialog', + version: '1.0.0' + } } ] }, diff --git a/packages/plugin-variable-bind-dialog/README.md b/packages/plugin-variable-bind-dialog/README.md new file mode 100644 index 000000000..8a6fb13f0 --- /dev/null +++ b/packages/plugin-variable-bind-dialog/README.md @@ -0,0 +1 @@ +## todo diff --git a/packages/plugin-variable-bind-dialog/build.json b/packages/plugin-variable-bind-dialog/build.json new file mode 100644 index 000000000..e791d5b6b --- /dev/null +++ b/packages/plugin-variable-bind-dialog/build.json @@ -0,0 +1,9 @@ +{ + "plugins": [ + "build-plugin-component", + "build-plugin-fusion", + ["build-plugin-moment-locales", { + "locales": ["zh-cn"] + }] + ] +} diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json new file mode 100644 index 000000000..d272c843c --- /dev/null +++ b/packages/plugin-variable-bind-dialog/package.json @@ -0,0 +1,38 @@ +{ + "name": "@ali/lowcode-plugin-variable-bind-dialog", + "version": "0.8.0", + "description": "alibaba lowcode editor variable bind dialog plugin", + "files": [ + "es", + "lib" + ], + "main": "lib/index.js", + "module": "es/index.js", + "scripts": { + "build": "build-scripts build --skip-demo", + "test": "ava", + "test:snapshot": "ava --update-snapshots" + }, + "keywords": [ + "lowcode", + "editor" + ], + "author": "zude.hzd", + "dependencies": { + "@alifd/next": "^1.19.16", + "@ali/lowcode-editor-core": "^0.8.0", + "react": "^16.8.1", + "react-dom": "^16.8.1" + }, + "devDependencies": { + "@alib/build-scripts": "^0.1.3", + "@types/react": "^16.9.13", + "@types/react-dom": "^16.9.4", + "build-plugin-component": "^0.2.7-1", + "build-plugin-fusion": "^0.1.0", + "build-plugin-moment-locales": "^0.1.0" + }, + "publishConfig": { + "registry": "https://registry.npm.alibaba-inc.com" + } +} diff --git a/packages/plugin-variable-bind-dialog/src/index.scss b/packages/plugin-variable-bind-dialog/src/index.scss new file mode 100644 index 000000000..afc59c927 --- /dev/null +++ b/packages/plugin-variable-bind-dialog/src/index.scss @@ -0,0 +1,90 @@ +.variable-dialog-body { + width: 730px; + height: 450px; + + + .dialog-small-title { + font-weight: 700; + margin-bottom: 8px; + color: rgb(0, 0, 0); + } + + .dialog-left-container { + float: left; + + .dialog-left-context { + width: 200px; + height: 392px; + border: 1px solid rgba(31, 56, 88, 0.3); + border-radius: 3px; + + .variable-type-container { + width: 200px; + height: 390px; + float: left; + } + + .select-item { + font-size: 12px; + height: 28px; + line-height: 28px; + padding: 0 30px 0 12px; + cursor: pointer; + position: relative; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .select-item-active { + background: rgba(128, 128, 128, 0.15); + } + + .event-select-container { + width: 156px; + float: left; + + .event-search-box { + width: 135px; + margin: 10px; + } + } + + .event-list { + overflow-y: auto; + overflow-x: hidden; + height: 342px; + } + + .variable-list{ + font-size: 13px; + .variable-item{ + padding-left: 30px; + cursor: pointer; + height: 30px; + line-height: 30px; + } + + .variable-item:hover{ + background-color: rgba(31, 56, 88, 0.06); + } + } + } + } + + .dialog-right-container { + width: 530px; + padding-left: 20px; + float: left; + + .event-input-container { + margin-bottom: 20px; + } + } +} + +.variable-bind-dialog-bottom{ + .bottom-left-container{ + float: left; + } +} diff --git a/packages/plugin-variable-bind-dialog/src/index.tsx b/packages/plugin-variable-bind-dialog/src/index.tsx new file mode 100644 index 000000000..cc2221e8c --- /dev/null +++ b/packages/plugin-variable-bind-dialog/src/index.tsx @@ -0,0 +1,166 @@ +import { Component, isValidElement, ReactElement, ReactNode } from 'react'; +import { Dialog, Search, Input ,Button} from '@alifd/next'; +import Editor from '@ali/lowcode-editor-core'; +import './index.scss'; + +export default class VariableBindDialog extends Component<{ + editor: Editor; +}> { + private loopVariableList: any[] = [ + { + name: 'item', + }, + { + name: 'index', + }, + ]; + + private stateVaroableList: any[] = [ + { + name: 'abc', + }, + { + name: 'title', + }, + { + name: 'jdata', + }, + ]; + + state = { + visiable: true, + selectedVariableName: '', + variableContext: '', + }; + + openDialog = (bindEventName: String) => { + this.setState({ + visiable: true, + eventName: bindEventName, + }); + }; + + closeDialog = () => { + this.setState({ + visiable: false, + }); + }; + + componentDidMount() { + const { editor, config } = this.props; + editor.on(`${config.pluginKey}.openDialog`, (bindEventName: String) => { + this.openDialog(bindEventName); + }); + } + + initEventName = () => { + const { bindEventName } = this.state; + let eventName = bindEventName; + this.eventList.map((item) => { + if (item.name === eventName) { + eventName = `${eventName}_new`; + } + }); + + this.setState({ + eventName, + }); + }; + + onInputChange = (eventName: String) => { + this.setState({ + eventName, + }); + }; + + onSelectItem = (variableName: String) => { + this.setState({ + selectedVariableName:variableName, + variableContext:variableName + }); + + // // 为空是新建事件 + // if (variableName === '') { + // this.initEventName(); + // } else { + // this.setState({ + // selectedEventName: eventName, + // eventName, + // }); + // } + }; + + + onOk = () => { + const { editor } = this.props; + editor.emit('event-setter.bindEvent', this.state.eventName); + this.closeDialog(); + }; + + renderBottom = () => { + return ( +
+
+ +
+ +
+    + +
+
+ ) + } + + render() { + const { selectedEventName, eventName, visiable ,variableContext} = this.state; + return ( + +
+
+
变量选择
+ +
+
+
+
当前上下文
+
+ {this.loopVariableList.map((item) => ( +
this.onSelectItem(item.name)}> + {item.name} +
+ ))} +
+
+ +
State属性
+
+ {this.stateVaroableList.map((item) => ( +
this.onSelectItem(item.name)}> + {item.name} +
+ ))} +
+
+
+
+ +
+
绑定
+ + +
帮助
+ +
+
+
+ ); + } +} diff --git a/packages/plugin-variable-bind-dialog/tsconfig.json b/packages/plugin-variable-bind-dialog/tsconfig.json new file mode 100644 index 000000000..c37b76ecc --- /dev/null +++ b/packages/plugin-variable-bind-dialog/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "lib" + }, + "include": [ + "./src/" + ] +} From 7b2e9b5a377cba6277d5e1f872e69956cb34c186 Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:42:08 +0800 Subject: [PATCH 03/11] Publish - @ali/lowcode-code-generator@0.8.1 - @ali/lowcode-demo@0.8.1 - @ali/lowcode-designer@0.8.2 - @ali/lowcode-editor-core@0.8.2 - @ali/lowcode-editor-skeleton@0.8.2 - @ali/lowcode-globals@0.8.1 - @ali/lowcode-material-parser@0.8.1 - @ali/lowcode-plugin-components-pane@0.8.1 - @ali/lowcode-plugin-designer@0.8.1 - @ali/lowcode-plugin-event-bind-dialog@0.8.2 - @ali/lowcode-plugin-outline-pane@0.8.2 - @ali/lowcode-plugin-sample-logo@0.8.1 - @ali/lowcode-plugin-sample-preview@0.8.1 - @ali/lowcode-plugin-sample-save@0.8.1 - @ali/lowcode-plugin-settings-pane@0.8.3 - @ali/lowcode-plugin-undo-redo@0.8.1 - @ali/lowcode-plugin-zh-en@0.8.1 - @ali/lowcode-react-renderer@0.8.2 - @ali/lowcode-react-simulator-renderer@0.8.1 - @ali/lowcode-runtime@0.8.1 - @ali/lowcode-setters@0.8.1 --- packages/code-generator/CHANGELOG.md | 15 +++++++++ packages/code-generator/package.json | 2 +- packages/demo/CHANGELOG.md | 13 ++++++++ packages/demo/package.json | 30 ++++++++--------- packages/designer/CHANGELOG.md | 14 ++++++++ packages/designer/package.json | 10 +++--- packages/editor-core/CHANGELOG.md | 12 +++++++ packages/editor-core/package.json | 8 ++--- packages/editor-skeleton/CHANGELOG.md | 12 +++++++ packages/editor-skeleton/package.json | 4 +-- packages/globals/CHANGELOG.md | 12 +++++++ packages/globals/package.json | 2 +- packages/material-parser/CHANGELOG.md | 33 +++++++++++++++++++ packages/material-parser/package.json | 2 +- packages/plugin-components-pane/CHANGELOG.md | 12 +++++++ packages/plugin-components-pane/package.json | 12 +++---- packages/plugin-designer/CHANGELOG.md | 12 +++++++ packages/plugin-designer/package.json | 10 +++--- .../plugin-event-bind-dialog/CHANGELOG.md | 12 +++++++ .../plugin-event-bind-dialog/package.json | 4 +-- packages/plugin-outline-pane/CHANGELOG.md | 12 +++++++ packages/plugin-outline-pane/package.json | 8 ++--- packages/plugin-sample-logo/CHANGELOG.md | 12 +++++++ packages/plugin-sample-logo/package.json | 4 +-- packages/plugin-sample-preview/CHANGELOG.md | 12 +++++++ packages/plugin-sample-preview/package.json | 8 ++--- packages/plugin-sample-save/CHANGELOG.md | 12 +++++++ packages/plugin-sample-save/package.json | 6 ++-- packages/plugin-settings-pane/CHANGELOG.md | 14 ++++++++ packages/plugin-settings-pane/package.json | 10 +++--- packages/plugin-undo-redo/CHANGELOG.md | 12 +++++++ packages/plugin-undo-redo/package.json | 6 ++-- packages/plugin-zh-en/CHANGELOG.md | 12 +++++++ packages/plugin-zh-en/package.json | 6 ++-- packages/react-renderer/CHANGELOG.md | 12 +++++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 12 +++++++ .../react-simulator-renderer/package.json | 14 ++++---- packages/runtime/CHANGELOG.md | 17 ++++++++++ packages/runtime/package.json | 8 ++--- packages/setters/CHANGELOG.md | 12 +++++++ packages/setters/package.json | 6 ++-- 42 files changed, 367 insertions(+), 81 deletions(-) create mode 100644 packages/code-generator/CHANGELOG.md create mode 100644 packages/demo/CHANGELOG.md create mode 100644 packages/designer/CHANGELOG.md create mode 100644 packages/editor-core/CHANGELOG.md create mode 100644 packages/editor-skeleton/CHANGELOG.md create mode 100644 packages/globals/CHANGELOG.md create mode 100644 packages/material-parser/CHANGELOG.md create mode 100644 packages/plugin-components-pane/CHANGELOG.md create mode 100644 packages/plugin-designer/CHANGELOG.md create mode 100644 packages/plugin-event-bind-dialog/CHANGELOG.md create mode 100644 packages/plugin-outline-pane/CHANGELOG.md create mode 100644 packages/plugin-sample-logo/CHANGELOG.md create mode 100644 packages/plugin-sample-preview/CHANGELOG.md create mode 100644 packages/plugin-sample-save/CHANGELOG.md create mode 100644 packages/plugin-settings-pane/CHANGELOG.md create mode 100644 packages/plugin-undo-redo/CHANGELOG.md create mode 100644 packages/plugin-zh-en/CHANGELOG.md create mode 100644 packages/react-renderer/CHANGELOG.md create mode 100644 packages/react-simulator-renderer/CHANGELOG.md create mode 100644 packages/runtime/CHANGELOG.md create mode 100644 packages/setters/CHANGELOG.md diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md new file mode 100644 index 000000000..d81f7cdf1 --- /dev/null +++ b/packages/code-generator/CHANGELOG.md @@ -0,0 +1,15 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Features + +* code generator main process ([021d6e0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/021d6e0)) +* demo schema & complex children type ([a5ee6bd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a5ee6bd)) +* fix gaps ([32af3d3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/32af3d3)) +* project builder fix & publish demo to disk ([26983b3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/26983b3)) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 9691e1b1e..f87f114ca 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.8.0", + "version": "0.8.1", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md new file mode 100644 index 000000000..3d886acce --- /dev/null +++ b/packages/demo/CHANGELOG.md @@ -0,0 +1,13 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Features + +* complet preview ([56c16ff](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/56c16ff)) +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) diff --git a/packages/demo/package.json b/packages/demo/package.json index 4f592efb8..25d5587ef 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,30 +1,30 @@ { "name": "@ali/lowcode-demo", "private": true, - "version": "0.8.0", + "version": "0.8.1", "description": "低代码引擎 DEMO", "scripts": { "start": "build-scripts start", "cloud-build": "build-scripts build --config cloud-build.json" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8", - "@ali/lowcode-editor-skeleton": "^0.8.0", - "@ali/lowcode-plugin-designer": "^0.8.0", - "@ali/lowcode-setters": "^0.8.0", - "@ali/lowcode-plugin-components-pane": "^0.8.0", - "@ali/lowcode-plugin-settings-pane": "^0.8.0", - "@ali/lowcode-plugin-outline-pane": "^0.8.0", - "@ali/lowcode-plugin-undo-redo": "^0.8.0", - "@ali/lowcode-plugin-zh-en": "^0.8.0", - "@ali/lowcode-plugin-sample-logo": "^0.8.0", - "@ali/lowcode-plugin-sample-preview": "^0.8.0", - "@ali/lowcode-plugin-event-bind-dialog": "^0.8.0", + "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-skeleton": "^0.8.2", + "@ali/lowcode-plugin-components-pane": "^0.8.1", + "@ali/lowcode-plugin-designer": "^0.8.1", + "@ali/lowcode-plugin-event-bind-dialog": "^0.8.2", + "@ali/lowcode-plugin-outline-pane": "^0.8.2", + "@ali/lowcode-plugin-sample-logo": "^0.8.1", + "@ali/lowcode-plugin-sample-preview": "^0.8.1", + "@ali/lowcode-plugin-settings-pane": "^0.8.3", + "@ali/lowcode-plugin-undo-redo": "^0.8.1", + "@ali/lowcode-plugin-zh-en": "^0.8.1", + "@ali/lowcode-react-renderer": "^0.8.2", "@ali/lowcode-runtime": "^0.0.3", - "@ali/lowcode-react-renderer": "^0.8.0", + "@ali/lowcode-setters": "^0.8.1", + "@alifd/next": "^1.19.21", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", - "@alifd/next": "^1.19.21", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md new file mode 100644 index 000000000..4f7e3da6f --- /dev/null +++ b/packages/designer/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + +### Features + +* 🎸 merge material-parser ([b40c286](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b40c286)) +* history log ([fbb3577](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/fbb3577)) +* import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e66168)) diff --git a/packages/designer/package.json b/packages/designer/package.json index ba93de0fd..1d2766884 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.8.1", + "version": "0.8.2", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,18 +15,18 @@ }, "license": "MIT", "dependencies": { + "@ali/lowcode-globals": "^0.8.1", "classnames": "^2.2.6", "react": "^16", - "react-dom": "^16.7.0", - "@ali/lowcode-globals": "^0.8" + "react-dom": "^16.7.0" }, "devDependencies": { - "@types/medium-editor": "^5.0.3", + "@alib/build-scripts": "^0.1.18", "@types/classnames": "^2.2.7", + "@types/medium-editor": "^5.0.3", "@types/node": "^13.7.1", "@types/react": "^16", "@types/react-dom": "^16", - "@alib/build-scripts": "^0.1.18", "build-plugin-component": "^0.2.10" }, "ava": { diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md new file mode 100644 index 000000000..865ca9346 --- /dev/null +++ b/packages/editor-core/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 9f6a0e6dc..a9371de28 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor core", "main": "lib/index.js", "module": "es/index.js", @@ -20,15 +20,15 @@ ], "author": "xiayang.xy", "dependencies": { + "@alifd/next": "1.x", "debug": "^4.1.1", "events": "^3.1.0", "intl-messageformat": "^8.3.1", "lodash": "^4.17.15", "prop-types": "^15.5.8", - "store": "^2.0.12", - "whatwg-fetch": "^3.0.0", "react": "^16.8.0", - "@alifd/next": "1.x" + "store": "^2.0.12", + "whatwg-fetch": "^3.0.0" }, "devDependencies": { "@alib/build-scripts": "^0.1.3", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md new file mode 100644 index 000000000..a3e8e95ed --- /dev/null +++ b/packages/editor-skeleton/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + +### Features + +* 🎸 merge material-parser ([b40c286](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b40c286)) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index d070c85ef..e857d2aa4 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.0", + "@ali/lowcode-editor-core": "^0.8.2", "@alifd/next": "^1.x", "prop-types": "^15.5.8", "react": "^16.8.1", diff --git a/packages/globals/CHANGELOG.md b/packages/globals/CHANGELOG.md new file mode 100644 index 000000000..d009b6445 --- /dev/null +++ b/packages/globals/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) diff --git a/packages/globals/package.json b/packages/globals/package.json index 22877a235..c82c7de92 100644 --- a/packages/globals/package.json +++ b/packages/globals/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-globals", - "version": "0.8.0", + "version": "0.8.1", "description": "Globals api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md new file mode 100644 index 000000000..8b0fa0307 --- /dev/null +++ b/packages/material-parser/CHANGELOG.md @@ -0,0 +1,33 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Bug Fixes + +* 🐛 fix bug of transforming type ([ebbe58d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ebbe58d)) +* 🐛 fix bug of validate schema ([3f97523](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3f97523)) + + +### Code Refactoring + +* 💡 refactor with react-docgen ([64c9daa](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/64c9daa)) + + +### Features + +* complete component protocol json schema & validate method ([3df360d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3df360d)) +* immigrate aimake materialin ([44ac85f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/44ac85f)) +* import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e66168)) +* remove -p tslint.json for test ([6d013e1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6d013e1)) +* remove useless codes & modify generator ([dcd1b33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dcd1b33)) +* support multiple exported components ([db1b6de](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/db1b6de)) + + +### BREAKING CHANGES + +* 🧨 use react-docgen to replace parser diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 3b1314827..c5ff1e1fb 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.8.0", + "version": "0.8.1", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md new file mode 100644 index 000000000..5554f256c --- /dev/null +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index ae5a2e461..db9c862fe 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,12 +20,12 @@ ], "author": "xiayang.xy", "dependencies": { - "react": "^16.8.1", - "@ali/iceluna-sdk": "^1.0.6-beta.6", - "@alifd/next": "^1.19.19", - "@ali/lowcode-editor-core": "0.8.0", + "@ali/iceluna-addon-component-list": "^1.0.11", "@ali/iceluna-comp-material-show": "^1.0.10", - "@ali/iceluna-addon-component-list": "^1.0.11" + "@ali/iceluna-sdk": "^1.0.6-beta.6", + "@ali/lowcode-editor-core": "0.8.0", + "@alifd/next": "^1.19.19", + "react": "^16.8.1" }, "devDependencies": { "@alib/build-scripts": "^0.1.3", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md new file mode 100644 index 000000000..f1c8207d0 --- /dev/null +++ b/packages/plugin-designer/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 73d09cf62..065f16601 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,15 +20,15 @@ ], "author": "xiayang.xy", "dependencies": { + "@ali/lowcode-designer": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.2", "react": "^16.8.1", - "react-dom": "^16.8.1", - "@ali/lowcode-designer": "0.8", - "@ali/lowcode-editor-core": "0.8" + "react-dom": "^16.8.1" }, "devDependencies": { + "@alib/build-scripts": "^0.1.3", "@types/react": "^16.9.13", "@types/react-dom": "^16.9.4", - "@alib/build-scripts": "^0.1.3", "build-plugin-component": "^0.2.7-1" }, "publishConfig": { diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md new file mode 100644 index 000000000..9097d542b --- /dev/null +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index e8eba3d64..d11c38efe 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { + "@ali/lowcode-editor-core": "^0.8.2", "@alifd/next": "^1.19.16", - "@ali/lowcode-editor-core": "^0.8.0", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md new file mode 100644 index 000000000..1b16b4cdf --- /dev/null +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 27bdd96be..857a1e5f0 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.1", + "version": "0.8.2", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,12 +14,12 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { + "@ali/lowcode-designer": "^0.8.2", + "@ali/lowcode-globals": "^0.8.1", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", - "react-dom": "^16.7.0", - "@ali/lowcode-designer": "^0.8.0", - "@ali/lowcode-globals": "^0.8.0" + "react-dom": "^16.7.0" }, "devDependencies": { "@alib/build-scripts": "^0.1.18", diff --git a/packages/plugin-sample-logo/CHANGELOG.md b/packages/plugin-sample-logo/CHANGELOG.md new file mode 100644 index 000000000..810da145d --- /dev/null +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index fbed27ea2..fa34e448c 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8", + "@ali/lowcode-editor-core": "^0.8.2", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md new file mode 100644 index 000000000..be19ffa58 --- /dev/null +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index faca5d9a4..e4a258e8f 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,10 +18,10 @@ "editor" ], "dependencies": { + "@ali/lowcode-designer": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.2", "@alifd/next": "^1.x", - "react": "^16.8.1", - "@ali/lowcode-editor-core": "^0.8.0", - "@ali/lowcode-designer": "^0.8.0" + "react": "^16.8.1" }, "devDependencies": { "@alib/build-scripts": "^0.1.3", diff --git a/packages/plugin-sample-save/CHANGELOG.md b/packages/plugin-sample-save/CHANGELOG.md new file mode 100644 index 000000000..c0e5bf6d1 --- /dev/null +++ b/packages/plugin-sample-save/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-save diff --git a/packages/plugin-sample-save/package.json b/packages/plugin-sample-save/package.json index 9b922cfb7..4ccf566e6 100644 --- a/packages/plugin-sample-save/package.json +++ b/packages/plugin-sample-save/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-save", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor sample save plugin", "files": [ "es", @@ -19,9 +19,9 @@ ], "author": "xiayang.xy", "dependencies": { + "@ali/lowcode-editor-core": "^0.8.2", "@alifd/next": "^1.x", - "react": "^16.8.1", - "@ali/lowcode-editor-core": "^0.8.0" + "react": "^16.8.1" }, "devDependencies": { "@alib/build-scripts": "^0.1.3", diff --git a/packages/plugin-settings-pane/CHANGELOG.md b/packages/plugin-settings-pane/CHANGELOG.md new file mode 100644 index 000000000..a7f4eddc6 --- /dev/null +++ b/packages/plugin-settings-pane/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.3 (2020-03-30) + + +### Features + +* add color-setter ([a149921](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a149921)) +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) +* 增加color-setter,json-setter ([93e76ce](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/93e76ce)) diff --git a/packages/plugin-settings-pane/package.json b/packages/plugin-settings-pane/package.json index afb784046..4498bf172 100644 --- a/packages/plugin-settings-pane/package.json +++ b/packages/plugin-settings-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-settings-pane", - "version": "0.8.2", + "version": "0.8.3", "description": "Settings pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.0", - "@ali/lowcode-designer": "^0.8.0", - "@ali/lowcode-globals": "^0.8.0", - "@ali/lowcode-plugin-outline-pane": "^0.8.0", + "@ali/lowcode-designer": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-plugin-outline-pane": "^0.8.2", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16" diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md new file mode 100644 index 000000000..0acfc9e34 --- /dev/null +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index fad11d855..f6dd550ea 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-skeleton": "^0.8.0", - "@ali/lowcode-editor-core": "^0.8.0", + "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-skeleton": "^0.8.2", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md new file mode 100644 index 000000000..d009b6445 --- /dev/null +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index c2de5403d..7ef5d55ee 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-globals": "^0.8.0", - "@ali/lowcode-editor-core": "^0.8.0", + "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-globals": "^0.8.1", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md new file mode 100644 index 000000000..027713991 --- /dev/null +++ b/packages/react-renderer/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index a958b9fed..5cfebcd50 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.8.1", + "version": "0.8.2", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md new file mode 100644 index 000000000..0379e0bca --- /dev/null +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 3ee267221..f03dfd855 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.0", + "version": "0.8.1", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,9 +13,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-globals": "^0.8", - "@ali/lowcode-designer": "^0.8", - "@ali/lowcode-react-renderer": "^0.8.0", + "@ali/lowcode-designer": "^0.8.2", + "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-react-renderer": "^0.8.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", "classnames": "^2.2.6", @@ -23,12 +23,12 @@ "react-dom": "^16.7.0" }, "devDependencies": { - "@types/react-dom": "^16", "@alib/build-scripts": "^0.1.18", - "build-plugin-component": "^0.2.11", "@types/classnames": "^2.2.7", "@types/node": "^13.7.1", - "@types/react": "^16" + "@types/react": "^16", + "@types/react-dom": "^16", + "build-plugin-component": "^0.2.11" }, "ava": { "compileEnhancements": false, diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md new file mode 100644 index 000000000..b1014f9f4 --- /dev/null +++ b/packages/runtime/CHANGELOG.md @@ -0,0 +1,17 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Bug Fixes + +* remove abstract identifer ([2e45266](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/2e45266)) + + +### Features + +* complet preview ([56c16ff](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/56c16ff)) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index ae0267c4c..7d9d689db 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.8.0", + "version": "0.8.1", "description": "Runtime for Ali lowCode engine", "files": [ "es", @@ -28,11 +28,11 @@ "@ali/recore": "^1.6.9" }, "devDependencies": { - "@types/react-dom": "^16", "@alib/build-scripts": "^0.1.18", - "build-plugin-component": "^0.2.11", "@types/node": "^13.7.1", - "@types/react": "^16" + "@types/react": "^16", + "@types/react-dom": "^16", + "build-plugin-component": "^0.2.11" }, "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" diff --git a/packages/setters/CHANGELOG.md b/packages/setters/CHANGELOG.md new file mode 100644 index 000000000..9a9d1916d --- /dev/null +++ b/packages/setters/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + +### Bug Fixes + +* ts type ([1732e7d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/1732e7d)) diff --git a/packages/setters/package.json b/packages/setters/package.json index 13e1f5b05..d97ed1cce 100644 --- a/packages/setters/package.json +++ b/packages/setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-setters", - "version": "0.8.0", + "version": "0.8.1", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,6 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-globals": "^0.8", "@ali/iceluna-comp-expression": "^1.0.6", "@ali/iceluna-comp-form": "^1.0.20", "@ali/iceluna-comp-list": "^1.0.26", @@ -23,6 +22,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", + "@ali/lowcode-globals": "^0.8.1", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", @@ -34,11 +34,11 @@ "react-monaco-editor": "^0.34.0" }, "devDependencies": { + "@alib/build-scripts": "^0.1.18", "@types/classnames": "^2.2.7", "@types/node": "^13.7.1", "@types/react": "^16", "@types/react-dom": "^16", - "@alib/build-scripts": "^0.1.18", "build-plugin-component": "^0.2.10", "build-plugin-fusion": "^0.1.0", "build-plugin-moment-locales": "^0.1.0" From 5c9725b9ddbdc46e4da8351dc9696dbc89016f20 Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:43:37 +0800 Subject: [PATCH 04/11] Publish - @ali/lowcode-code-generator@0.8.2 - @ali/lowcode-demo@0.8.2 - @ali/lowcode-designer@0.8.3 - @ali/lowcode-editor-core@0.8.3 - @ali/lowcode-editor-skeleton@0.8.3 - @ali/lowcode-globals@0.8.2 - @ali/lowcode-material-parser@0.8.2 - @ali/lowcode-plugin-components-pane@0.8.2 - @ali/lowcode-plugin-designer@0.8.2 - @ali/lowcode-plugin-event-bind-dialog@0.8.3 - @ali/lowcode-plugin-outline-pane@0.8.3 - @ali/lowcode-plugin-sample-logo@0.8.2 - @ali/lowcode-plugin-sample-preview@0.8.2 - @ali/lowcode-plugin-sample-save@0.8.2 - @ali/lowcode-plugin-settings-pane@0.8.4 - @ali/lowcode-plugin-undo-redo@0.8.2 - @ali/lowcode-plugin-zh-en@0.8.2 - @ali/lowcode-react-renderer@0.8.3 - @ali/lowcode-react-simulator-renderer@0.8.2 - @ali/lowcode-runtime@0.8.2 - @ali/lowcode-setters@0.8.2 --- packages/code-generator/CHANGELOG.md | 14 ++++++++ packages/code-generator/package.json | 2 +- packages/demo/CHANGELOG.md | 12 +++++++ packages/demo/package.json | 28 ++++++++-------- packages/designer/CHANGELOG.md | 13 ++++++++ packages/designer/package.json | 4 +-- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 2 +- packages/editor-skeleton/CHANGELOG.md | 11 +++++++ packages/editor-skeleton/package.json | 4 +-- packages/globals/CHANGELOG.md | 11 +++++++ packages/globals/package.json | 2 +- packages/material-parser/CHANGELOG.md | 32 +++++++++++++++++++ packages/material-parser/package.json | 2 +- packages/plugin-components-pane/CHANGELOG.md | 8 +++++ packages/plugin-components-pane/package.json | 2 +- packages/plugin-designer/CHANGELOG.md | 8 +++++ packages/plugin-designer/package.json | 6 ++-- .../plugin-event-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-event-bind-dialog/package.json | 4 +-- packages/plugin-outline-pane/CHANGELOG.md | 11 +++++++ packages/plugin-outline-pane/package.json | 6 ++-- packages/plugin-sample-logo/CHANGELOG.md | 8 +++++ packages/plugin-sample-logo/package.json | 4 +-- packages/plugin-sample-preview/CHANGELOG.md | 8 +++++ packages/plugin-sample-preview/package.json | 6 ++-- packages/plugin-sample-save/CHANGELOG.md | 8 +++++ packages/plugin-sample-save/package.json | 4 +-- packages/plugin-settings-pane/CHANGELOG.md | 13 ++++++++ packages/plugin-settings-pane/package.json | 10 +++--- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 6 ++-- packages/plugin-zh-en/CHANGELOG.md | 11 +++++++ packages/plugin-zh-en/package.json | 6 ++-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 8 ++--- packages/runtime/CHANGELOG.md | 16 ++++++++++ packages/runtime/package.json | 2 +- packages/setters/CHANGELOG.md | 11 +++++++ packages/setters/package.json | 4 +-- 42 files changed, 292 insertions(+), 57 deletions(-) diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index d81f7cdf1..ed139ab8c 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Features + +* code generator main process ([021d6e0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/021d6e0)) +* demo schema & complex children type ([a5ee6bd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a5ee6bd)) +* fix gaps ([32af3d3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/32af3d3)) +* project builder fix & publish demo to disk ([26983b3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/26983b3)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index f87f114ca..3677857a9 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.8.1", + "version": "0.8.2", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 3d886acce..d965f256f 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Features + +* complet preview ([56c16ff](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/56c16ff)) +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/demo/package.json b/packages/demo/package.json index 25d5587ef..72735d36c 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,27 +1,27 @@ { "name": "@ali/lowcode-demo", "private": true, - "version": "0.8.1", + "version": "0.8.2", "description": "低代码引擎 DEMO", "scripts": { "start": "build-scripts start", "cloud-build": "build-scripts build --config cloud-build.json" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", - "@ali/lowcode-editor-skeleton": "^0.8.2", - "@ali/lowcode-plugin-components-pane": "^0.8.1", - "@ali/lowcode-plugin-designer": "^0.8.1", - "@ali/lowcode-plugin-event-bind-dialog": "^0.8.2", - "@ali/lowcode-plugin-outline-pane": "^0.8.2", - "@ali/lowcode-plugin-sample-logo": "^0.8.1", - "@ali/lowcode-plugin-sample-preview": "^0.8.1", - "@ali/lowcode-plugin-settings-pane": "^0.8.3", - "@ali/lowcode-plugin-undo-redo": "^0.8.1", - "@ali/lowcode-plugin-zh-en": "^0.8.1", - "@ali/lowcode-react-renderer": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-skeleton": "^0.8.3", + "@ali/lowcode-plugin-components-pane": "^0.8.2", + "@ali/lowcode-plugin-designer": "^0.8.2", + "@ali/lowcode-plugin-event-bind-dialog": "^0.8.3", + "@ali/lowcode-plugin-outline-pane": "^0.8.3", + "@ali/lowcode-plugin-sample-logo": "^0.8.2", + "@ali/lowcode-plugin-sample-preview": "^0.8.2", + "@ali/lowcode-plugin-settings-pane": "^0.8.4", + "@ali/lowcode-plugin-undo-redo": "^0.8.2", + "@ali/lowcode-plugin-zh-en": "^0.8.2", + "@ali/lowcode-react-renderer": "^0.8.3", "@ali/lowcode-runtime": "^0.0.3", - "@ali/lowcode-setters": "^0.8.1", + "@ali/lowcode-setters": "^0.8.2", "@alifd/next": "^1.19.21", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 4f7e3da6f..13e824665 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + +### Features + +* 🎸 merge material-parser ([b40c286](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b40c286)) +* history log ([fbb3577](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/fbb3577)) +* import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e66168)) + + + + ## 0.8.2 (2020-03-30) diff --git a/packages/designer/package.json b/packages/designer/package.json index 1d2766884..7009e1fc9 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.8.2", + "version": "0.8.3", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,7 +15,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-globals": "^0.8.2", "classnames": "^2.2.6", "react": "^16", "react-dom": "^16.7.0" diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 865ca9346..5c7620efb 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## 0.8.2 (2020-03-30) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index a9371de28..ed7612cd5 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor core", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index a3e8e95ed..ead89426f 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + +### Features + +* 🎸 merge material-parser ([b40c286](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b40c286)) + + + + ## 0.8.2 (2020-03-30) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index e857d2aa4..1e1ac1161 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", "@alifd/next": "^1.x", "prop-types": "^15.5.8", "react": "^16.8.1", diff --git a/packages/globals/CHANGELOG.md b/packages/globals/CHANGELOG.md index d009b6445..d4a14ef96 100644 --- a/packages/globals/CHANGELOG.md +++ b/packages/globals/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/globals/package.json b/packages/globals/package.json index c82c7de92..cc8e64ba1 100644 --- a/packages/globals/package.json +++ b/packages/globals/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-globals", - "version": "0.8.1", + "version": "0.8.2", "description": "Globals api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 8b0fa0307..5251fac04 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Bug Fixes + +* 🐛 fix bug of transforming type ([ebbe58d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ebbe58d)) +* 🐛 fix bug of validate schema ([3f97523](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3f97523)) + + +### Code Refactoring + +* 💡 refactor with react-docgen ([64c9daa](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/64c9daa)) + + +### Features + +* complete component protocol json schema & validate method ([3df360d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3df360d)) +* immigrate aimake materialin ([44ac85f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/44ac85f)) +* import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e66168)) +* remove -p tslint.json for test ([6d013e1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6d013e1)) +* remove useless codes & modify generator ([dcd1b33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dcd1b33)) +* support multiple exported components ([db1b6de](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/db1b6de)) + + +### BREAKING CHANGES + +* 🧨 use react-docgen to replace parser + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index c5ff1e1fb..8752b267e 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.8.1", + "version": "0.8.2", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index 5554f256c..ee0844987 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index db9c862fe..1e20248c5 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index f1c8207d0..0637feb4e 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 065f16601..594f65c73 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-designer": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.3", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md index 9097d542b..12814754c 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index d11c38efe..85d947582 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 1b16b4cdf..56983685b 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) + + + + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 857a1e5f0..9b26286e7 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.2", + "version": "0.8.3", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-designer": "^0.8.3", + "@ali/lowcode-globals": "^0.8.2", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", diff --git a/packages/plugin-sample-logo/CHANGELOG.md b/packages/plugin-sample-logo/CHANGELOG.md index 810da145d..670c4d59a 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index fa34e448c..4889705d8 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index be19ffa58..c8b47d2e6 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index e4a258e8f..301521c15 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,8 +18,8 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-designer": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.3", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-sample-save/CHANGELOG.md b/packages/plugin-sample-save/CHANGELOG.md index c0e5bf6d1..a41ec7499 100644 --- a/packages/plugin-sample-save/CHANGELOG.md +++ b/packages/plugin-sample-save/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-save + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-sample-save/package.json b/packages/plugin-sample-save/package.json index 4ccf566e6..666815db8 100644 --- a/packages/plugin-sample-save/package.json +++ b/packages/plugin-sample-save/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-save", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor sample save plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-settings-pane/CHANGELOG.md b/packages/plugin-settings-pane/CHANGELOG.md index a7f4eddc6..a701aba77 100644 --- a/packages/plugin-settings-pane/CHANGELOG.md +++ b/packages/plugin-settings-pane/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.4 (2020-03-30) + + +### Features + +* add color-setter ([a149921](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a149921)) +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) +* 增加color-setter,json-setter ([93e76ce](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/93e76ce)) + + + + ## 0.8.3 (2020-03-30) diff --git a/packages/plugin-settings-pane/package.json b/packages/plugin-settings-pane/package.json index 4498bf172..17629e84d 100644 --- a/packages/plugin-settings-pane/package.json +++ b/packages/plugin-settings-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-settings-pane", - "version": "0.8.3", + "version": "0.8.4", "description": "Settings pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-editor-core": "^0.8.2", - "@ali/lowcode-globals": "^0.8.1", - "@ali/lowcode-plugin-outline-pane": "^0.8.2", + "@ali/lowcode-designer": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-plugin-outline-pane": "^0.8.3", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16" diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 0acfc9e34..8cf5908ed 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index f6dd550ea..f24dda901 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", - "@ali/lowcode-editor-skeleton": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-skeleton": "^0.8.3", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index d009b6445..d4a14ef96 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Features + +* double outline & ZH_EN support ([b379bd7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b379bd7)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 7ef5d55ee..75ffa5e6c 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.1", + "version": "0.8.2", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.2", - "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-globals": "^0.8.2", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 027713991..e71c7b150 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.3 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## 0.8.2 (2020-03-30) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 5cfebcd50..39b00045f 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.8.2", + "version": "0.8.3", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 0379e0bca..6f40b28bd 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## 0.8.1 (2020-03-30) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index f03dfd855..34d79c27a 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.1", + "version": "0.8.2", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,9 +13,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-globals": "^0.8.1", - "@ali/lowcode-react-renderer": "^0.8.2", + "@ali/lowcode-designer": "^0.8.3", + "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-react-renderer": "^0.8.3", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", "classnames": "^2.2.6", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index b1014f9f4..b3c609e35 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Bug Fixes + +* remove abstract identifer ([2e45266](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/2e45266)) + + +### Features + +* complet preview ([56c16ff](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/56c16ff)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 7d9d689db..a07faf05d 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.8.1", + "version": "0.8.2", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/setters/CHANGELOG.md b/packages/setters/CHANGELOG.md index 9a9d1916d..c1d04e18c 100644 --- a/packages/setters/CHANGELOG.md +++ b/packages/setters/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.8.2 (2020-03-30) + + +### Bug Fixes + +* ts type ([1732e7d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/1732e7d)) + + + + ## 0.8.1 (2020-03-30) diff --git a/packages/setters/package.json b/packages/setters/package.json index d97ed1cce..121b980eb 100644 --- a/packages/setters/package.json +++ b/packages/setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-setters", - "version": "0.8.1", + "version": "0.8.2", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -22,7 +22,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", - "@ali/lowcode-globals": "^0.8.1", + "@ali/lowcode-globals": "^0.8.2", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", From 546da047a28e1963e73f67989fda4a16f3ec5e8e Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:45:06 +0800 Subject: [PATCH 05/11] chore: fix publish config --- packages/material-parser/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 8752b267e..05b208894 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -54,5 +54,8 @@ "react-docgen": "^5.3.0", "semver": "^7.1.3", "short-uuid": "^3.1.1" + }, + "publishConfig": { + "registry": "https://registry.npm.alibaba-inc.com" } } From e9d725b78c62f18d658e36d72576b64affb6c4b1 Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:45:22 +0800 Subject: [PATCH 06/11] Publish - @ali/lowcode-code-generator@0.8.3 - @ali/lowcode-demo@0.8.3 - @ali/lowcode-designer@0.8.4 - @ali/lowcode-editor-core@0.8.4 - @ali/lowcode-editor-skeleton@0.8.4 - @ali/lowcode-globals@0.8.3 - @ali/lowcode-material-parser@0.8.3 - @ali/lowcode-plugin-components-pane@0.8.3 - @ali/lowcode-plugin-designer@0.8.3 - @ali/lowcode-plugin-event-bind-dialog@0.8.4 - @ali/lowcode-plugin-outline-pane@0.8.4 - @ali/lowcode-plugin-sample-logo@0.8.3 - @ali/lowcode-plugin-sample-preview@0.8.3 - @ali/lowcode-plugin-sample-save@0.8.3 - @ali/lowcode-plugin-settings-pane@0.8.5 - @ali/lowcode-plugin-undo-redo@0.8.3 - @ali/lowcode-plugin-zh-en@0.8.3 - @ali/lowcode-react-renderer@0.8.4 - @ali/lowcode-react-simulator-renderer@0.8.3 - @ali/lowcode-runtime@0.8.3 - @ali/lowcode-setters@0.8.3 --- packages/code-generator/CHANGELOG.md | 8 ++++++ packages/code-generator/package.json | 2 +- packages/demo/CHANGELOG.md | 8 ++++++ packages/demo/package.json | 28 +++++++++---------- packages/designer/CHANGELOG.md | 8 ++++++ packages/designer/package.json | 4 +-- packages/editor-core/CHANGELOG.md | 8 ++++++ packages/editor-core/package.json | 2 +- packages/editor-skeleton/CHANGELOG.md | 8 ++++++ packages/editor-skeleton/package.json | 4 +-- packages/globals/CHANGELOG.md | 8 ++++++ packages/globals/package.json | 2 +- packages/material-parser/CHANGELOG.md | 8 ++++++ packages/material-parser/package.json | 2 +- packages/plugin-components-pane/CHANGELOG.md | 8 ++++++ packages/plugin-components-pane/package.json | 2 +- packages/plugin-designer/CHANGELOG.md | 8 ++++++ packages/plugin-designer/package.json | 6 ++-- .../plugin-event-bind-dialog/CHANGELOG.md | 8 ++++++ .../plugin-event-bind-dialog/package.json | 4 +-- packages/plugin-outline-pane/CHANGELOG.md | 8 ++++++ packages/plugin-outline-pane/package.json | 6 ++-- packages/plugin-sample-logo/CHANGELOG.md | 8 ++++++ packages/plugin-sample-logo/package.json | 4 +-- packages/plugin-sample-preview/CHANGELOG.md | 8 ++++++ packages/plugin-sample-preview/package.json | 6 ++-- packages/plugin-sample-save/CHANGELOG.md | 8 ++++++ packages/plugin-sample-save/package.json | 4 +-- packages/plugin-settings-pane/CHANGELOG.md | 8 ++++++ packages/plugin-settings-pane/package.json | 10 +++---- packages/plugin-undo-redo/CHANGELOG.md | 8 ++++++ packages/plugin-undo-redo/package.json | 6 ++-- packages/plugin-zh-en/CHANGELOG.md | 8 ++++++ packages/plugin-zh-en/package.json | 6 ++-- packages/react-renderer/CHANGELOG.md | 8 ++++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 ++++++ .../react-simulator-renderer/package.json | 8 +++--- packages/runtime/CHANGELOG.md | 8 ++++++ packages/runtime/package.json | 2 +- packages/setters/CHANGELOG.md | 8 ++++++ packages/setters/package.json | 4 +-- 42 files changed, 225 insertions(+), 57 deletions(-) diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index ed139ab8c..7c998d3b2 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@0.8.2...@ali/lowcode-code-generator@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## 0.8.2 (2020-03-30) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 3677857a9..06cf3232d 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.8.2", + "version": "0.8.3", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index d965f256f..e712ca2bf 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.2...@ali/lowcode-demo@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## 0.8.2 (2020-03-30) diff --git a/packages/demo/package.json b/packages/demo/package.json index 72735d36c..ae96a71fb 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,27 +1,27 @@ { "name": "@ali/lowcode-demo", "private": true, - "version": "0.8.2", + "version": "0.8.3", "description": "低代码引擎 DEMO", "scripts": { "start": "build-scripts start", "cloud-build": "build-scripts build --config cloud-build.json" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", - "@ali/lowcode-editor-skeleton": "^0.8.3", - "@ali/lowcode-plugin-components-pane": "^0.8.2", - "@ali/lowcode-plugin-designer": "^0.8.2", - "@ali/lowcode-plugin-event-bind-dialog": "^0.8.3", - "@ali/lowcode-plugin-outline-pane": "^0.8.3", - "@ali/lowcode-plugin-sample-logo": "^0.8.2", - "@ali/lowcode-plugin-sample-preview": "^0.8.2", - "@ali/lowcode-plugin-settings-pane": "^0.8.4", - "@ali/lowcode-plugin-undo-redo": "^0.8.2", - "@ali/lowcode-plugin-zh-en": "^0.8.2", - "@ali/lowcode-react-renderer": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", + "@ali/lowcode-editor-skeleton": "^0.8.4", + "@ali/lowcode-plugin-components-pane": "^0.8.3", + "@ali/lowcode-plugin-designer": "^0.8.3", + "@ali/lowcode-plugin-event-bind-dialog": "^0.8.4", + "@ali/lowcode-plugin-outline-pane": "^0.8.4", + "@ali/lowcode-plugin-sample-logo": "^0.8.3", + "@ali/lowcode-plugin-sample-preview": "^0.8.3", + "@ali/lowcode-plugin-settings-pane": "^0.8.5", + "@ali/lowcode-plugin-undo-redo": "^0.8.3", + "@ali/lowcode-plugin-zh-en": "^0.8.3", + "@ali/lowcode-react-renderer": "^0.8.4", "@ali/lowcode-runtime": "^0.0.3", - "@ali/lowcode-setters": "^0.8.2", + "@ali/lowcode-setters": "^0.8.3", "@alifd/next": "^1.19.21", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 13e824665..4ec8c47b4 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.8.3...@ali/lowcode-designer@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## 0.8.3 (2020-03-30) diff --git a/packages/designer/package.json b/packages/designer/package.json index 7009e1fc9..b034835dd 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.8.3", + "version": "0.8.4", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,7 +15,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-globals": "^0.8.3", "classnames": "^2.2.6", "react": "^16", "react-dom": "^16.7.0" diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 5c7620efb..50762113f 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.3...@ali/lowcode-editor-core@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## 0.8.3 (2020-03-30) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index ed7612cd5..813f34d15 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor core", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index ead89426f..4cfc104d8 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.3...@ali/lowcode-editor-skeleton@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## 0.8.3 (2020-03-30) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 1e1ac1161..8b07d8209 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", "@alifd/next": "^1.x", "prop-types": "^15.5.8", "react": "^16.8.1", diff --git a/packages/globals/CHANGELOG.md b/packages/globals/CHANGELOG.md index d4a14ef96..c456594a1 100644 --- a/packages/globals/CHANGELOG.md +++ b/packages/globals/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-globals@0.8.2...@ali/lowcode-globals@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-globals + ## 0.8.2 (2020-03-30) diff --git a/packages/globals/package.json b/packages/globals/package.json index cc8e64ba1..f60991629 100644 --- a/packages/globals/package.json +++ b/packages/globals/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-globals", - "version": "0.8.2", + "version": "0.8.3", "description": "Globals api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 5251fac04..231b0516b 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@0.8.2...@ali/lowcode-material-parser@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## 0.8.2 (2020-03-30) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 05b208894..b2e425fb7 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.8.2", + "version": "0.8.3", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index ee0844987..e802fd47f 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.2...@ali/lowcode-plugin-components-pane@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 1e20248c5..e59b704dd 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 0637feb4e..c290f9074 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.8.2...@ali/lowcode-plugin-designer@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 594f65c73..81c9bc471 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.8.3", - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-editor-core": "^0.8.4", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md index 12814754c..550fef5b0 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.3...@ali/lowcode-plugin-event-bind-dialog@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## 0.8.3 (2020-03-30) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 85d947582..030fc73f9 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 56983685b..21c33ced9 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.3...@ali/lowcode-plugin-outline-pane@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## 0.8.3 (2020-03-30) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 9b26286e7..383fa2684 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.3", + "version": "0.8.4", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.3", - "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-globals": "^0.8.3", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", diff --git a/packages/plugin-sample-logo/CHANGELOG.md b/packages/plugin-sample-logo/CHANGELOG.md index 670c4d59a..6c08053f7 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.2...@ali/lowcode-plugin-sample-logo@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 4889705d8..95cfc81a9 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index c8b47d2e6..0d8a798bd 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.2...@ali/lowcode-plugin-sample-preview@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 301521c15..76f20af2b 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,8 +18,8 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.8.3", - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-editor-core": "^0.8.4", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-sample-save/CHANGELOG.md b/packages/plugin-sample-save/CHANGELOG.md index a41ec7499..066b3f7da 100644 --- a/packages/plugin-sample-save/CHANGELOG.md +++ b/packages/plugin-sample-save/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-save@0.8.2...@ali/lowcode-plugin-sample-save@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-save + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-sample-save/package.json b/packages/plugin-sample-save/package.json index 666815db8..e42b30c16 100644 --- a/packages/plugin-sample-save/package.json +++ b/packages/plugin-sample-save/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-save", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor sample save plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-settings-pane/CHANGELOG.md b/packages/plugin-settings-pane/CHANGELOG.md index a701aba77..37011d8d0 100644 --- a/packages/plugin-settings-pane/CHANGELOG.md +++ b/packages/plugin-settings-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-settings-pane@0.8.4...@ali/lowcode-plugin-settings-pane@0.8.5) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-settings-pane + ## 0.8.4 (2020-03-30) diff --git a/packages/plugin-settings-pane/package.json b/packages/plugin-settings-pane/package.json index 17629e84d..e9ab40f04 100644 --- a/packages/plugin-settings-pane/package.json +++ b/packages/plugin-settings-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-settings-pane", - "version": "0.8.4", + "version": "0.8.5", "description": "Settings pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.3", - "@ali/lowcode-editor-core": "^0.8.3", - "@ali/lowcode-globals": "^0.8.2", - "@ali/lowcode-plugin-outline-pane": "^0.8.3", + "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-editor-core": "^0.8.4", + "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-plugin-outline-pane": "^0.8.4", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16" diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 8cf5908ed..b14087185 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.2...@ali/lowcode-plugin-undo-redo@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index f24dda901..d2483a5a7 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", - "@ali/lowcode-editor-skeleton": "^0.8.3", + "@ali/lowcode-editor-core": "^0.8.4", + "@ali/lowcode-editor-skeleton": "^0.8.4", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index d4a14ef96..96dd0acb6 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.2...@ali/lowcode-plugin-zh-en@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## 0.8.2 (2020-03-30) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 75ffa5e6c..851a11229 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.2", + "version": "0.8.3", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.3", - "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-editor-core": "^0.8.4", + "@ali/lowcode-globals": "^0.8.3", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index e71c7b150..9cb431588 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@0.8.3...@ali/lowcode-react-renderer@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## 0.8.3 (2020-03-30) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 39b00045f..28df95c28 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.8.3", + "version": "0.8.4", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 6f40b28bd..6ba2a199e 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.2...@ali/lowcode-react-simulator-renderer@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## 0.8.2 (2020-03-30) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 34d79c27a..e91ea666b 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.2", + "version": "0.8.3", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,9 +13,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.3", - "@ali/lowcode-globals": "^0.8.2", - "@ali/lowcode-react-renderer": "^0.8.3", + "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-react-renderer": "^0.8.4", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", "classnames": "^2.2.6", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index b3c609e35..7da641b80 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@0.8.2...@ali/lowcode-runtime@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## 0.8.2 (2020-03-30) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index a07faf05d..ca4c330b8 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.8.2", + "version": "0.8.3", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/setters/CHANGELOG.md b/packages/setters/CHANGELOG.md index c1d04e18c..808e40d1b 100644 --- a/packages/setters/CHANGELOG.md +++ b/packages/setters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-setters@0.8.2...@ali/lowcode-setters@0.8.3) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-setters + ## 0.8.2 (2020-03-30) diff --git a/packages/setters/package.json b/packages/setters/package.json index 121b980eb..b4fc0a077 100644 --- a/packages/setters/package.json +++ b/packages/setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-setters", - "version": "0.8.2", + "version": "0.8.3", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -22,7 +22,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", - "@ali/lowcode-globals": "^0.8.2", + "@ali/lowcode-globals": "^0.8.3", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", From f2c7f462da26b5169a58b60c59d12727622a8cfc Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 20:55:39 +0800 Subject: [PATCH 07/11] merge --- packages/designer/package.json | 4 ---- packages/editor-skeleton/package.json | 4 ---- packages/plugin-components-pane/package.json | 4 ---- packages/plugin-event-bind-dialog/package.json | 4 ---- packages/plugin-outline-pane/package.json | 4 ---- packages/plugin-sample-logo/package.json | 4 ---- packages/plugin-sample-preview/package.json | 5 ----- packages/plugin-sample-save/package.json | 4 ---- packages/plugin-settings-pane/package.json | 4 ---- packages/plugin-undo-redo/package.json | 5 ----- packages/setters/package.json | 4 ---- 11 files changed, 46 deletions(-) diff --git a/packages/designer/package.json b/packages/designer/package.json index 49ad7d2d9..b034835dd 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-designer", -<<<<<<< HEAD "version": "0.8.4", -======= - "version": "0.8.2", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 7f9c28ab5..8b07d8209 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", -<<<<<<< HEAD "version": "0.8.4", -======= - "version": "0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 4da3f27e7..e59b704dd 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", -<<<<<<< HEAD "version": "0.8.3", -======= - "version": "0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index d96f6c201..030fc73f9 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", -<<<<<<< HEAD "version": "0.8.4", -======= - "version": "0.8.2", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 59f876fce..383fa2684 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", -<<<<<<< HEAD "version": "0.8.4", -======= - "version": "0.8.2", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "Outline pane for Ali lowCode engine", "files": [ "es", diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 014ff41e6..95cfc81a9 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", -<<<<<<< HEAD "version": "0.8.3", -======= - "version": "0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "alibaba lowcode editor logo plugin", "files": [ "es/", diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 92a06bdf8..76f20af2b 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -18,13 +18,8 @@ "editor" ], "dependencies": { -<<<<<<< HEAD "@ali/lowcode-designer": "^0.8.4", "@ali/lowcode-editor-core": "^0.8.4", -======= - "@ali/lowcode-designer": "^0.8.2", - "@ali/lowcode-editor-core": "^0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-sample-save/package.json b/packages/plugin-sample-save/package.json index 7409068f2..e42b30c16 100644 --- a/packages/plugin-sample-save/package.json +++ b/packages/plugin-sample-save/package.json @@ -19,11 +19,7 @@ ], "author": "xiayang.xy", "dependencies": { -<<<<<<< HEAD "@ali/lowcode-editor-core": "^0.8.4", -======= - "@ali/lowcode-editor-core": "^0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-settings-pane/package.json b/packages/plugin-settings-pane/package.json index 1b75ea001..e9ab40f04 100644 --- a/packages/plugin-settings-pane/package.json +++ b/packages/plugin-settings-pane/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-settings-pane", -<<<<<<< HEAD "version": "0.8.5", -======= - "version": "0.8.3", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "Settings pane for Ali lowCode engine", "files": [ "es", diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 889cf8b5e..d2483a5a7 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -19,13 +19,8 @@ ], "author": "xiayang.xy", "dependencies": { -<<<<<<< HEAD "@ali/lowcode-editor-core": "^0.8.4", "@ali/lowcode-editor-skeleton": "^0.8.4", -======= - "@ali/lowcode-editor-core": "^0.8.1", - "@ali/lowcode-editor-skeleton": "^0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/setters/package.json b/packages/setters/package.json index ff4bd707f..b4fc0a077 100644 --- a/packages/setters/package.json +++ b/packages/setters/package.json @@ -22,11 +22,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", -<<<<<<< HEAD "@ali/lowcode-globals": "^0.8.3", -======= - "@ali/lowcode-globals": "^0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", From cc2ed44392e38bc236d88863b0357b275901fbba Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 21:01:19 +0800 Subject: [PATCH 08/11] merge --- packages/plugin-designer/package.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index c4c312f98..81c9bc471 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,10 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", -<<<<<<< HEAD "version": "0.8.3", -======= - "version": "0.8.1", ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc "description": "alibaba lowcode editor designer plugin", "files": [ "es", From ae382703a49bbc3e18c8a438a779d66628caa57e Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 21:01:58 +0800 Subject: [PATCH 09/11] Publish - @ali/lowcode-code-generator@0.8.4 - @ali/lowcode-demo@0.8.4 - @ali/lowcode-designer@0.8.5 - @ali/lowcode-editor-skeleton@0.8.5 - @ali/lowcode-globals@0.8.4 - @ali/lowcode-material-parser@0.8.4 - @ali/lowcode-plugin-designer@0.8.4 - @ali/lowcode-plugin-outline-pane@0.8.5 - @ali/lowcode-plugin-sample-preview@0.8.4 - @ali/lowcode-plugin-settings-pane@0.8.6 - @ali/lowcode-plugin-undo-redo@0.8.4 - @ali/lowcode-plugin-variable-bind-dialog@0.8.1 - @ali/lowcode-plugin-zh-en@0.8.4 - @ali/lowcode-react-simulator-renderer@0.8.4 - @ali/lowcode-runtime@0.8.4 - @ali/lowcode-setters@0.8.4 --- packages/code-generator/CHANGELOG.md | 8 ++++++++ packages/code-generator/package.json | 2 +- packages/demo/CHANGELOG.md | 8 ++++++++ packages/demo/package.json | 18 +++++++++--------- packages/designer/CHANGELOG.md | 8 ++++++++ packages/designer/package.json | 4 ++-- packages/editor-skeleton/CHANGELOG.md | 8 ++++++++ packages/editor-skeleton/package.json | 2 +- packages/globals/CHANGELOG.md | 8 ++++++++ packages/globals/package.json | 2 +- packages/material-parser/CHANGELOG.md | 8 ++++++++ packages/material-parser/package.json | 2 +- packages/plugin-designer/CHANGELOG.md | 8 ++++++++ packages/plugin-designer/package.json | 4 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 ++++++++ packages/plugin-outline-pane/package.json | 6 +++--- packages/plugin-sample-preview/CHANGELOG.md | 8 ++++++++ packages/plugin-sample-preview/package.json | 4 ++-- packages/plugin-settings-pane/CHANGELOG.md | 8 ++++++++ packages/plugin-settings-pane/package.json | 8 ++++---- packages/plugin-undo-redo/CHANGELOG.md | 8 ++++++++ packages/plugin-undo-redo/package.json | 4 ++-- .../plugin-variable-bind-dialog/CHANGELOG.md | 12 ++++++++++++ .../plugin-variable-bind-dialog/package.json | 4 ++-- packages/plugin-zh-en/CHANGELOG.md | 8 ++++++++ packages/plugin-zh-en/package.json | 4 ++-- packages/react-simulator-renderer/CHANGELOG.md | 8 ++++++++ packages/react-simulator-renderer/package.json | 6 +++--- packages/runtime/CHANGELOG.md | 8 ++++++++ packages/runtime/package.json | 2 +- packages/setters/CHANGELOG.md | 8 ++++++++ packages/setters/package.json | 4 ++-- 32 files changed, 170 insertions(+), 38 deletions(-) create mode 100644 packages/plugin-variable-bind-dialog/CHANGELOG.md diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index e4d52cb96..e3d51cf5c 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@0.8.3...@ali/lowcode-code-generator@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@0.8.2...@ali/lowcode-code-generator@0.8.3) (2020-03-30) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 06cf3232d..bb3e1f4a3 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.8.3", + "version": "0.8.4", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 7c5f1c633..837580ad9 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.3...@ali/lowcode-demo@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.2...@ali/lowcode-demo@0.8.3) (2020-03-30) diff --git a/packages/demo/package.json b/packages/demo/package.json index ae96a71fb..4b7331e3f 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,7 +1,7 @@ { "name": "@ali/lowcode-demo", "private": true, - "version": "0.8.3", + "version": "0.8.4", "description": "低代码引擎 DEMO", "scripts": { "start": "build-scripts start", @@ -9,19 +9,19 @@ }, "dependencies": { "@ali/lowcode-editor-core": "^0.8.4", - "@ali/lowcode-editor-skeleton": "^0.8.4", + "@ali/lowcode-editor-skeleton": "^0.8.5", "@ali/lowcode-plugin-components-pane": "^0.8.3", - "@ali/lowcode-plugin-designer": "^0.8.3", + "@ali/lowcode-plugin-designer": "^0.8.4", "@ali/lowcode-plugin-event-bind-dialog": "^0.8.4", - "@ali/lowcode-plugin-outline-pane": "^0.8.4", + "@ali/lowcode-plugin-outline-pane": "^0.8.5", "@ali/lowcode-plugin-sample-logo": "^0.8.3", - "@ali/lowcode-plugin-sample-preview": "^0.8.3", - "@ali/lowcode-plugin-settings-pane": "^0.8.5", - "@ali/lowcode-plugin-undo-redo": "^0.8.3", - "@ali/lowcode-plugin-zh-en": "^0.8.3", + "@ali/lowcode-plugin-sample-preview": "^0.8.4", + "@ali/lowcode-plugin-settings-pane": "^0.8.6", + "@ali/lowcode-plugin-undo-redo": "^0.8.4", + "@ali/lowcode-plugin-zh-en": "^0.8.4", "@ali/lowcode-react-renderer": "^0.8.4", "@ali/lowcode-runtime": "^0.0.3", - "@ali/lowcode-setters": "^0.8.3", + "@ali/lowcode-setters": "^0.8.4", "@alifd/next": "^1.19.21", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index bec54c5bf..de06c409a 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.8.4...@ali/lowcode-designer@0.8.5) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.8.3...@ali/lowcode-designer@0.8.4) (2020-03-30) diff --git a/packages/designer/package.json b/packages/designer/package.json index b034835dd..8f5218ad2 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.8.4", + "version": "0.8.5", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,7 +15,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-globals": "^0.8.4", "classnames": "^2.2.6", "react": "^16", "react-dom": "^16.7.0" diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 1f51ad848..0a630a1c1 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.4...@ali/lowcode-editor-skeleton@0.8.5) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.3...@ali/lowcode-editor-skeleton@0.8.4) (2020-03-30) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 8b07d8209..1534fb47c 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.4", + "version": "0.8.5", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/globals/CHANGELOG.md b/packages/globals/CHANGELOG.md index 07b4b3190..b84e92924 100644 --- a/packages/globals/CHANGELOG.md +++ b/packages/globals/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-globals@0.8.3...@ali/lowcode-globals@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-globals + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-globals@0.8.2...@ali/lowcode-globals@0.8.3) (2020-03-30) diff --git a/packages/globals/package.json b/packages/globals/package.json index f60991629..9805ff01e 100644 --- a/packages/globals/package.json +++ b/packages/globals/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-globals", - "version": "0.8.3", + "version": "0.8.4", "description": "Globals api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 316d60fd6..319fd234a 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@0.8.3...@ali/lowcode-material-parser@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@0.8.2...@ali/lowcode-material-parser@0.8.3) (2020-03-30) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index b2e425fb7..bd0c6f7a8 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.8.3", + "version": "0.8.4", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index c290f9074..267269282 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.8.3...@ali/lowcode-plugin-designer@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.8.2...@ali/lowcode-plugin-designer@0.8.3) (2020-03-30) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 81c9bc471..602e6d2c0 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-designer": "^0.8.5", "@ali/lowcode-editor-core": "^0.8.4", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 294f361b3..304251f11 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.4...@ali/lowcode-plugin-outline-pane@0.8.5) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.3...@ali/lowcode-plugin-outline-pane@0.8.4) (2020-03-30) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 383fa2684..1bf6ff46f 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.4", + "version": "0.8.5", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,8 +14,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.4", - "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-designer": "^0.8.5", + "@ali/lowcode-globals": "^0.8.4", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 0d8a798bd..34f92a57a 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.3...@ali/lowcode-plugin-sample-preview@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.2...@ali/lowcode-plugin-sample-preview@0.8.3) (2020-03-30) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 76f20af2b..4627792a2 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,7 +18,7 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-designer": "^0.8.5", "@ali/lowcode-editor-core": "^0.8.4", "@alifd/next": "^1.x", "react": "^16.8.1" diff --git a/packages/plugin-settings-pane/CHANGELOG.md b/packages/plugin-settings-pane/CHANGELOG.md index 40cd6d3c0..a657c3cae 100644 --- a/packages/plugin-settings-pane/CHANGELOG.md +++ b/packages/plugin-settings-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-settings-pane@0.8.5...@ali/lowcode-plugin-settings-pane@0.8.6) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-settings-pane + ## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-settings-pane@0.8.4...@ali/lowcode-plugin-settings-pane@0.8.5) (2020-03-30) diff --git a/packages/plugin-settings-pane/package.json b/packages/plugin-settings-pane/package.json index e9ab40f04..01f8ba80d 100644 --- a/packages/plugin-settings-pane/package.json +++ b/packages/plugin-settings-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-settings-pane", - "version": "0.8.5", + "version": "0.8.6", "description": "Settings pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.4", + "@ali/lowcode-designer": "^0.8.5", "@ali/lowcode-editor-core": "^0.8.4", - "@ali/lowcode-globals": "^0.8.3", - "@ali/lowcode-plugin-outline-pane": "^0.8.4", + "@ali/lowcode-globals": "^0.8.4", + "@ali/lowcode-plugin-outline-pane": "^0.8.5", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16" diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index b14087185..ebb4a1198 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.3...@ali/lowcode-plugin-undo-redo@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.2...@ali/lowcode-plugin-undo-redo@0.8.3) (2020-03-30) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index d2483a5a7..ae68c658e 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -20,7 +20,7 @@ "author": "xiayang.xy", "dependencies": { "@ali/lowcode-editor-core": "^0.8.4", - "@ali/lowcode-editor-skeleton": "^0.8.4", + "@ali/lowcode-editor-skeleton": "^0.8.5", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-variable-bind-dialog/CHANGELOG.md b/packages/plugin-variable-bind-dialog/CHANGELOG.md new file mode 100644 index 000000000..df5e0530a --- /dev/null +++ b/packages/plugin-variable-bind-dialog/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.8.1 (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index d272c843c..5f882bbb6 100644 --- a/packages/plugin-variable-bind-dialog/package.json +++ b/packages/plugin-variable-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-variable-bind-dialog", - "version": "0.8.0", + "version": "0.8.1", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@alifd/next": "^1.19.16", "@ali/lowcode-editor-core": "^0.8.0", + "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index 95c5c97d1..8ca167328 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.3...@ali/lowcode-plugin-zh-en@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.2...@ali/lowcode-plugin-zh-en@0.8.3) (2020-03-30) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 851a11229..f32f31dd5 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.3", + "version": "0.8.4", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -15,7 +15,7 @@ }, "dependencies": { "@ali/lowcode-editor-core": "^0.8.4", - "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-globals": "^0.8.4", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 6ba2a199e..54a48c21b 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.3...@ali/lowcode-react-simulator-renderer@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.2...@ali/lowcode-react-simulator-renderer@0.8.3) (2020-03-30) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index e91ea666b..864eabb96 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.3", + "version": "0.8.4", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,8 +13,8 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.8.4", - "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-designer": "^0.8.5", + "@ali/lowcode-globals": "^0.8.4", "@ali/lowcode-react-renderer": "^0.8.4", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 0403aa022..04f41a6fe 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@0.8.3...@ali/lowcode-runtime@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@0.8.2...@ali/lowcode-runtime@0.8.3) (2020-03-30) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index ca4c330b8..97f5ffb3f 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.8.3", + "version": "0.8.4", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/setters/CHANGELOG.md b/packages/setters/CHANGELOG.md index e9abf7bbf..484a12c7d 100644 --- a/packages/setters/CHANGELOG.md +++ b/packages/setters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-setters@0.8.3...@ali/lowcode-setters@0.8.4) (2020-03-30) + + + + +**Note:** Version bump only for package @ali/lowcode-setters + ## [0.8.3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-setters@0.8.2...@ali/lowcode-setters@0.8.3) (2020-03-30) diff --git a/packages/setters/package.json b/packages/setters/package.json index b4fc0a077..8f2e4a7d8 100644 --- a/packages/setters/package.json +++ b/packages/setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-setters", - "version": "0.8.3", + "version": "0.8.4", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -22,7 +22,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", - "@ali/lowcode-globals": "^0.8.3", + "@ali/lowcode-globals": "^0.8.4", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", From c90996d3cdfe02163d570be3e4ffe2e560430954 Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 21:18:34 +0800 Subject: [PATCH 10/11] fix: depend --- packages/demo/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/demo/package.json b/packages/demo/package.json index 4b7331e3f..38476c2dd 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -13,6 +13,7 @@ "@ali/lowcode-plugin-components-pane": "^0.8.3", "@ali/lowcode-plugin-designer": "^0.8.4", "@ali/lowcode-plugin-event-bind-dialog": "^0.8.4", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.0", "@ali/lowcode-plugin-outline-pane": "^0.8.5", "@ali/lowcode-plugin-sample-logo": "^0.8.3", "@ali/lowcode-plugin-sample-preview": "^0.8.4", From 822d6766054e663c43195f6b812ae6cd9191207e Mon Sep 17 00:00:00 2001 From: kangwei Date: Mon, 30 Mar 2020 21:19:10 +0800 Subject: [PATCH 11/11] Publish - @ali/lowcode-demo@0.8.5 --- packages/demo/CHANGELOG.md | 11 +++++++++++ packages/demo/package.json | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 837580ad9..99326aff5 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.4...@ali/lowcode-demo@0.8.5) (2020-03-30) + + +### Bug Fixes + +* depend ([c90996d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c90996d)) + + + + ## [0.8.4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.3...@ali/lowcode-demo@0.8.4) (2020-03-30) diff --git a/packages/demo/package.json b/packages/demo/package.json index 38476c2dd..3f924b133 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,7 +1,7 @@ { "name": "@ali/lowcode-demo", "private": true, - "version": "0.8.4", + "version": "0.8.5", "description": "低代码引擎 DEMO", "scripts": { "start": "build-scripts start", @@ -13,12 +13,12 @@ "@ali/lowcode-plugin-components-pane": "^0.8.3", "@ali/lowcode-plugin-designer": "^0.8.4", "@ali/lowcode-plugin-event-bind-dialog": "^0.8.4", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.0", "@ali/lowcode-plugin-outline-pane": "^0.8.5", "@ali/lowcode-plugin-sample-logo": "^0.8.3", "@ali/lowcode-plugin-sample-preview": "^0.8.4", "@ali/lowcode-plugin-settings-pane": "^0.8.6", "@ali/lowcode-plugin-undo-redo": "^0.8.4", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.0", "@ali/lowcode-plugin-zh-en": "^0.8.4", "@ali/lowcode-react-renderer": "^0.8.4", "@ali/lowcode-runtime": "^0.0.3",