From 58b8200fb261c486d2db47a229d5dae8022e6e88 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Tue, 22 Sep 2020 14:24:16 +0800 Subject: [PATCH 01/36] =?UTF-8?q?feat:=20skeleton=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=85=A8=E5=B1=80=20catch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-preset-vision/src/bus.ts | 3 ++- packages/editor-skeleton/src/layouts/workbench.tsx | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/editor-preset-vision/src/bus.ts b/packages/editor-preset-vision/src/bus.ts index dd6b8386a..5e595da29 100644 --- a/packages/editor-preset-vision/src/bus.ts +++ b/packages/editor-preset-vision/src/bus.ts @@ -1,12 +1,13 @@ import logger from '@ali/vu-logger'; import { EventEmitter } from 'events'; import { editor } from './editor'; +import { AppHelper } from '@ali/lowcode-utils'; /** * Bus class as an EventEmitter */ export class Bus { - private emitter = new EventEmitter(); + private emitter = AppHelper.getInstance(); getEmitter() { return this.emitter; diff --git a/packages/editor-skeleton/src/layouts/workbench.tsx b/packages/editor-skeleton/src/layouts/workbench.tsx index 0d5d65379..2c3f9cc43 100644 --- a/packages/editor-skeleton/src/layouts/workbench.tsx +++ b/packages/editor-skeleton/src/layouts/workbench.tsx @@ -13,6 +13,7 @@ import RightArea from './right-area'; import './workbench.less'; import { SkeletonContext } from '../context'; import { EditorConfig, PluginClassSet } from '@ali/lowcode-types'; +import { AppHelper } from '@ali/lowcode-utils'; @observer export class Workbench extends Component<{ skeleton: Skeleton; config?: EditorConfig; components?: PluginClassSet; className?: string; topAreaItemClassName?: string }> { @@ -26,6 +27,11 @@ export class Workbench extends Component<{ skeleton: Skeleton; config?: EditorCo return false; } + componentDidCatch(error: any) { + const helper = AppHelper.getInstance(); + helper.emit('editor.skeleton.workbench.error', error); + } + render() { const { skeleton, className, topAreaItemClassName } = this.props; return ( From 094c6b8dcee0ddd4a3bb62886d774d77ca3eee2e Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Tue, 22 Sep 2020 14:26:30 +0800 Subject: [PATCH 02/36] =?UTF-8?q?refactor:=20accessLibrary=20=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=20utils=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-preset-vision/package.json | 1 + packages/editor-preset-vision/src/bundle/prototype.ts | 10 +--------- packages/utils/src/build-components.ts | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index cff9295c0..e3bbea6ed 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -20,6 +20,7 @@ "@ali/lowcode-editor-skeleton": "^1.0.9-6", "@ali/lowcode-plugin-designer": "^1.0.9-6", "@ali/lowcode-plugin-outline-pane": "^1.0.9-6", + "@ali/lowcode-utils": "^1.0.9-7", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-preset-vision/src/bundle/prototype.ts b/packages/editor-preset-vision/src/bundle/prototype.ts index b91554240..2c3f7b44c 100644 --- a/packages/editor-preset-vision/src/bundle/prototype.ts +++ b/packages/editor-preset-vision/src/bundle/prototype.ts @@ -16,6 +16,7 @@ import { upgradePropConfig, upgradeConfigure, } from './upgrade-metadata'; +import { accessLibrary } from '@ali/lowcode-utils'; import { designer } from '../editor'; @@ -166,15 +167,6 @@ export interface OldGlobalPropConfig extends OldPropConfig { const packageMaps: any = {}; -function accessLibrary(library: string | object) { - if (typeof library !== 'string') { - return library; - } - - // TODO: enhance logic - return (window as any)[library]; -} - export function setPackages(packages: Array<{ package: string; library: object | string }>) { packages.forEach((item) => { let lib: any; diff --git a/packages/utils/src/build-components.ts b/packages/utils/src/build-components.ts index fcf4d17c1..6cfda9514 100644 --- a/packages/utils/src/build-components.ts +++ b/packages/utils/src/build-components.ts @@ -9,7 +9,7 @@ interface LibraryMap { [key: string]: string; } -function accessLibrary(library: string | Record) { +export function accessLibrary(library: string | Record) { if (typeof library !== 'string') { return library; } From 91cfb564df4c6ae7fb62f405f7fa15da1847c289 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Thu, 24 Sep 2020 10:32:00 +0800 Subject: [PATCH 03/36] =?UTF-8?q?fix:=20build=20=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/demo/build.plugin.js | 1 + packages/react-renderer/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/demo/build.plugin.js b/packages/demo/build.plugin.js index 9e95cbd09..1e50c137b 100644 --- a/packages/demo/build.plugin.js +++ b/packages/demo/build.plugin.js @@ -16,6 +16,7 @@ module.exports = ({ onGetWebpackConfig }) => { .use( new MonacoWebpackPlugin({ languages: ['typescript', 'css', 'json'], + features: ['!gotoSymbol'], }), [], ); diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 5987a1adf..aa383839b 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@1.0.9-9/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-1/build/index.html" } From b787dc436c7774f451770dfe6c432070a232a56a Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 10:44:20 +0800 Subject: [PATCH 04/36] =?UTF-8?q?fix:=20=E4=BD=BF=E7=94=A8=20componentMeta?= =?UTF-8?q?.isModal=20=E4=BB=A3=E6=9B=BF=20protoType.isModal()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/designer/src/builtin-simulator/host.ts | 5 ++--- .../designer/src/document/node/modal-nodes-manager.ts | 9 +++------ packages/plugin-outline-pane/src/main.ts | 4 ++-- .../plugin-outline-pane/src/views/root-tree-node.tsx | 2 +- packages/plugin-outline-pane/src/views/tree-branches.tsx | 2 +- packages/react-simulator-renderer/src/renderer.ts | 2 +- 6 files changed, 10 insertions(+), 14 deletions(-) diff --git a/packages/designer/src/builtin-simulator/host.ts b/packages/designer/src/builtin-simulator/host.ts index d61a4bed0..76e6a9e6d 100644 --- a/packages/designer/src/builtin-simulator/host.ts +++ b/packages/designer/src/builtin-simulator/host.ts @@ -975,12 +975,11 @@ export class BuiltinSimulatorHost implements ISimulatorHost, selector: string): Element interface DropContainer { container: ParentalNode; instance: ComponentInstance; -} \ No newline at end of file +} diff --git a/packages/designer/src/document/node/modal-nodes-manager.ts b/packages/designer/src/document/node/modal-nodes-manager.ts index b5cb96963..e2c459521 100644 --- a/packages/designer/src/document/node/modal-nodes-manager.ts +++ b/packages/designer/src/document/node/modal-nodes-manager.ts @@ -4,8 +4,7 @@ import { DocumentModel } from '../document-model'; function getModalNodes(node: Node) { let nodes: any = []; - const prototype = node.getPrototype(); - if (prototype && prototype.isModal()) { + if (node.componentMeta.isModal) { nodes.push(node); } const children = node.getChildren(); @@ -85,8 +84,7 @@ export class ModalNodesManager { } private addNode(node: Node) { - const prototype = node.getPrototype(); - if (prototype && prototype.isModal()) { + if (node.componentMeta.isModal) { this.hideModalNodes(); this.modalNodes.push(node); this.addNodeEvent(node); @@ -96,8 +94,7 @@ export class ModalNodesManager { } private removeNode(node: Node) { - const prototype = node.getPrototype(); - if (prototype && prototype.isModal()) { + if (node.componentMeta.isModal) { const index = this.modalNodes.indexOf(node); if (index >= 0) { this.modalNodes.splice(index, 1); diff --git a/packages/plugin-outline-pane/src/main.ts b/packages/plugin-outline-pane/src/main.ts index dd2f55136..e4339ff9f 100644 --- a/packages/plugin-outline-pane/src/main.ts +++ b/packages/plugin-outline-pane/src/main.ts @@ -158,8 +158,8 @@ export class OutlineMain implements ISensor, ITreeBoard, IScrollable { const irect = this.getInsertionRect(); const originLoc = document.dropLocation; - const prop = e.dragObject.nodes ? e.dragObject.nodes[0].getPrototype() : null; - if (e.dragObject.type === 'node' && prop && prop.isModal()) { + const componentMeta = e.dragObject.nodes ? e.dragObject.nodes[0].componentMeta : null; + if (e.dragObject.type === 'node' && componentMeta && componentMeta.isModal) { return designer.createLocation({ target: document.rootNode, detail: { diff --git a/packages/plugin-outline-pane/src/views/root-tree-node.tsx b/packages/plugin-outline-pane/src/views/root-tree-node.tsx index 69d456ef1..efed91d78 100644 --- a/packages/plugin-outline-pane/src/views/root-tree-node.tsx +++ b/packages/plugin-outline-pane/src/views/root-tree-node.tsx @@ -29,7 +29,7 @@ class ModalTreeNodeView extends Component<{ treeNode: TreeNode }> { render() { const { treeNode } = this.props; const modalNodes = treeNode.children?.filter((item) => { - return item.node.getPrototype()?.isModal(); + return item.node.componentMeta.isModal; }); if (!modalNodes || modalNodes.length === 0) { return null; diff --git a/packages/plugin-outline-pane/src/views/tree-branches.tsx b/packages/plugin-outline-pane/src/views/tree-branches.tsx index f6471450b..8cbf9db48 100644 --- a/packages/plugin-outline-pane/src/views/tree-branches.tsx +++ b/packages/plugin-outline-pane/src/views/tree-branches.tsx @@ -72,7 +72,7 @@ class TreeNodeChildren extends Component<{ /> ); treeNode.children?.forEach((child, index) => { - const childIsModal = child.node.getPrototype()?.isModal() || false; + const childIsModal = child.node.componentMeta.isModal || false; if (isModal != childIsModal) { return; } diff --git a/packages/react-simulator-renderer/src/renderer.ts b/packages/react-simulator-renderer/src/renderer.ts index 10ee936d2..e2818395c 100644 --- a/packages/react-simulator-renderer/src/renderer.ts +++ b/packages/react-simulator-renderer/src/renderer.ts @@ -508,7 +508,7 @@ class ComponentCreator extends React.Component<{ schema: any; propsMap: any, com constructor(props: any) { super(props); const componentMeta = host.currentDocument?.getComponentMeta(props.schema.componentName); - if (componentMeta?.prototype?.isModal()) { + if (componentMeta?.isModal) { this.isModal = true; } } From d8d32a29f94eed2573a129d12024be0ceba2cdde Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 10:45:01 +0800 Subject: [PATCH 05/36] fix: designer.componentsMap --- packages/designer/src/designer/designer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/designer/src/designer/designer.ts b/packages/designer/src/designer/designer.ts index 9e0825b2c..5098bfd2f 100644 --- a/packages/designer/src/designer/designer.ts +++ b/packages/designer/src/designer/designer.ts @@ -464,7 +464,7 @@ export class Designer { const view = metaData.experimental?.view; if (view) { maps[key] = view; - } else if (config.npm) { + } else { maps[key] = config.npm; } } From 05133181ca4bac3d9fc9d577abf0d4cad3a4487f Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 10:45:30 +0800 Subject: [PATCH 06/36] =?UTF-8?q?fix:=20preset-vision=20=E5=BC=95=E5=85=A5?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=20setter=EF=BC=8C=E6=94=AF=E6=8C=81=E7=89=A9?= =?UTF-8?q?=E6=96=99=E4=B8=AD=E5=BF=83=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-preset-vision/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-preset-vision/src/index.ts b/packages/editor-preset-vision/src/index.ts index 42b17fa89..bed83f713 100644 --- a/packages/editor-preset-vision/src/index.ts +++ b/packages/editor-preset-vision/src/index.ts @@ -26,8 +26,8 @@ import DragEngine from './drag-engine'; // import Flags from './base/flags'; import Viewport from './viewport'; import Project from './project'; - import Symbols from './symbols'; +import '@ali/lowcode-editor-setters'; import './vision.less'; From b26266547b7a46bdb083e6d3e04e10d01af7a116 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 10:46:48 +0800 Subject: [PATCH 07/36] =?UTF-8?q?fix:=20=E4=BD=BF=E7=94=A8=E5=BC=95?= =?UTF-8?q?=E6=93=8E=E6=A0=87=E5=87=86=E7=9A=84=20lc-container-placeholder?= =?UTF-8?q?=EF=BC=8C=E6=94=AF=E6=8C=81=20children=20=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/renderer-view.tsx | 26 +++++++-------- .../src/renderer.less | 32 ------------------- 2 files changed, 13 insertions(+), 45 deletions(-) diff --git a/packages/react-simulator-renderer/src/renderer-view.tsx b/packages/react-simulator-renderer/src/renderer-view.tsx index 07b63d6f7..aa758fe16 100644 --- a/packages/react-simulator-renderer/src/renderer-view.tsx +++ b/packages/react-simulator-renderer/src/renderer-view.tsx @@ -151,18 +151,18 @@ class Renderer extends Component<{ viewProps._leaf = leaf; viewProps._componentName = leaf?.componentName; // 如果是容器 && 无children && 高宽为空 增加一个占位容器,方便拖动 - // if ( - // !viewProps.dataSource && - // leaf?.isContainer() && - // (children == null || (Array.isArray(children) && !children.length)) && - // (!viewProps.style || Object.keys(viewProps.style).length === 0) - // ) { - // children = ( - //
- // {viewProps.placeholder || '拖拽组件或模板到这里'} - //
- // ); - // } + if ( + !viewProps.dataSource && + leaf?.isContainer() && + (children == null || (Array.isArray(children) && !children.length)) && + (!viewProps.style || Object.keys(viewProps.style).length === 0) + ) { + children = ( +
+ {viewProps.placeholder || '拖拽组件或模板到这里'} +
+ ); + } if (viewProps._componentName === 'a') { delete viewProps.href; } @@ -189,7 +189,7 @@ class Renderer extends Component<{ return createElement( getDeviceView(Component, device, designMode), viewProps, - leaf?.isContainer() ? (children == null ? [] : Array.isArray(children) ? children : [children]) : null, + leaf?.isContainer() ? (children == null ? [] : Array.isArray(children) ? children : [children]) : children, ); }} onCompGetRef={(schema: any, ref: ReactInstance | null) => { diff --git a/packages/react-simulator-renderer/src/renderer.less b/packages/react-simulator-renderer/src/renderer.less index 0e77cb867..d8c580549 100644 --- a/packages/react-simulator-renderer/src/renderer.less +++ b/packages/react-simulator-renderer/src/renderer.less @@ -63,28 +63,6 @@ html.engine-cursor-ew-resize, html.engine-cursor-ew-resize * { text-align: center; } -.engine-empty { - background: #f2f3f5; - color: #a7b1bd; - outline: 1px dashed rgba(31, 56, 88, 0.2); - outline-offset: -1px !important; - height: 66px; - max-height: 100%; - min-width: 140px; - text-align: center; - overflow: hidden; - display: flex; - align-items: center; -} - -.engine-empty:before { - content: '\62D6\62FD\7EC4\4EF6\6216\6A21\677F\5230\8FD9\91CC'; - font-size: 14px; - z-index: 1; - width: 100%; - white-space: nowrap; -} - body.engine-document { &:after, &:before { content: ""; @@ -93,16 +71,6 @@ body.engine-document { &:after { clear: both; } - - /* - .next-input-group, - .next-checkbox-group,.next-date-picker,.next-input,.next-month-picker, - .next-number-picker,.next-radio-group,.next-range,.next-range-picker, - .next-rating,.next-select,.next-switch,.next-time-picker,.next-upload, - .next-year-picker, - .next-breadcrumb-item,.next-calendar-header,.next-calendar-table { - pointer-events: none !important; - }*/ } .engine-live-editing { From 6e9dcac727237537036288d98914075422383fc7 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 16:53:22 +0800 Subject: [PATCH 08/36] v0.12.1-3 --- CHANGELOG.md | 21 +++++++++++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 11 +++++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 12 ++++++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 17 +++++++++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 11 +++++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 11 +++++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 11 +++++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 11 +++++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 12 ++++++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 393 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 958807a4e..a5c78aeba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* build 配置文件修改 ([91cfb56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/91cfb56)) +* designer.componentsMap ([d8d32a2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d8d32a2)) +* preset-vision 引入默认 setter,支持物料中心组件 ([0513318](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/0513318)) +* 使用 componentMeta.isModal 代替 protoType.isModal() ([b787dc4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b787dc4)) +* 使用引擎标准的 lc-container-placeholder,支持 children 属性 ([b262665](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b262665)) +* 去掉 flags ([75fc3c6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/75fc3c6)) + + +### Features + +* skeleton 增加全局 catch ([58b8200](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/58b8200)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/lerna.json b/lerna.json index 04a9e1d76..3930d03bd 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-2", + "version": "0.12.1-3", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index df990ce2c..e9e5ed7e9 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 2f9e0d6a1..730989604 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 6180ae421..2801860a3 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 60aec86c4..08ac9da7b 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-2", + "version": "0.12.1-3", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index cc86dec83..8f6c563e9 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* 去掉 flags ([75fc3c6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/75fc3c6)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/demo/package.json b/packages/demo/package.json index 2d1bace56..b12c2b028 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-2", + "version": "0.12.1-3", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-editor-skeleton": "^0.12.1-2", - "@ali/lowcode-plugin-components-pane": "^0.12.1-2", - "@ali/lowcode-plugin-designer": "^0.12.1-2", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-2", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-2", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-2", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-skeleton": "^0.12.1-3", + "@ali/lowcode-plugin-components-pane": "^0.12.1-3", + "@ali/lowcode-plugin-designer": "^0.12.1-3", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-3", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-3", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-3", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-2", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-2", - "@ali/lowcode-plugin-zh-en": "^0.12.1-2", - "@ali/lowcode-react-renderer": "^0.12.1-2", - "@ali/lowcode-runtime": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-3", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-3", + "@ali/lowcode-plugin-zh-en": "^0.12.1-3", + "@ali/lowcode-react-renderer": "^0.12.1-3", + "@ali/lowcode-runtime": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 98bab47d2..165a7f1ff 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* designer.componentsMap ([d8d32a2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d8d32a2)) +* 使用 componentMeta.isModal 代替 protoType.isModal() ([b787dc4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b787dc4)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/designer/package.json b/packages/designer/package.json index 848087748..192e69e0d 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index f1269b5f0..a9033549e 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 4d18fd3d4..04f5fcf1b 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 378223478..a203e4c0c 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 9c3c88f58..1b66e62c5 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-editor-skeleton": "^0.12.1-2", - "@ali/lowcode-plugin-designer": "^0.12.1-2", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-skeleton": "^0.12.1-3", + "@ali/lowcode-plugin-designer": "^0.12.1-3", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-2", + "@ali/lowcode-editor-setters": "^0.12.1-3", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index f1ea0c57b..907fc4366 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* preset-vision 引入默认 setter,支持物料中心组件 ([0513318](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/0513318)) +* 去掉 flags ([75fc3c6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/75fc3c6)) + + +### Features + +* skeleton 增加全局 catch ([58b8200](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/58b8200)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index dd64763a5..f4ccc2cb9 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-editor-skeleton": "^0.12.1-2", - "@ali/lowcode-plugin-designer": "^0.12.1-2", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-skeleton": "^0.12.1-3", + "@ali/lowcode-plugin-designer": "^0.12.1-3", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index aae297911..e9ea41b5f 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 091b9e2c1..e6d6a9eb4 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-2", + "version": "0.12.1-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-editor-core": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index f4d93eb1e..d291a413c 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Features + +* skeleton 增加全局 catch ([58b8200](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/58b8200)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 3264a53b3..554c9afe8 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 635f80392..768c7b4de 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 6b7007003..9f456290b 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-2", + "version": "0.12.1-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 c1306d54e..69585ff54 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 0fd8b8b32..1f0b3cd5b 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 48fb43494..85843df7c 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 37c7d61e8..28e657e91 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-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 00f82eb2a..1da6cd6c4 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 9e73ab982..271620674 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-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 5dee7ad79..c201493ab 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* 使用 componentMeta.isModal 代替 protoType.isModal() ([b787dc4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b787dc4)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 4bba6dba6..fa5645d77 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.12.1-2", + "version": "0.12.1-3", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-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 ebb072113..814e690ea 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 7ffc02513..d619d6df3 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index e3987761d..33848276b 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 09a7e6731..8631b62b0 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-react-renderer": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-react-renderer": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 784742414..759cec9c3 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 1b6e3db3d..3c8f0a713 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index aa73ad482..5b49288a1 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index e3139ce94..866734d07 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-editor-skeleton": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-skeleton": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "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 index 1c421b680..964a312c5 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index d4b07bbcb..77fc9eee9 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", "@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 3f953434a..2f2b7958d 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 435eacce7..7c1fc5433 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.12.1-2", + "version": "0.12.1-3", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index d2db59094..bb0f95768 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 8f461b357..1556e627a 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-2", + "@ali/lowcode-runtime": "^0.12.1-3", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index ecf0e63dc..51044d1f1 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v1.0.9-9...v0.12.1-1) (2020-09-22) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index aa4c3d3e3..883f23725 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 263ddb9b1..bc5c3cf15 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-simulator-renderer/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* 去掉 flags ([75fc3c6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/75fc3c6)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 68226be33..fc97f8144 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-rax-renderer": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-rax-renderer": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 854147339..a5aeeacc7 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 8ff9da1f6..1005ee09d 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-2", + "@ali/lowcode-runtime": "^0.12.1-3", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index df6e302cb..43013b3a4 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* 去掉 flags ([75fc3c6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/75fc3c6)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index d432f5419..e36b76b23 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-2", + "version": "0.12.1-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 c6bc8d3f5..aa96789b3 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + +### Bug Fixes + +* 使用 componentMeta.isModal 代替 protoType.isModal() ([b787dc4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b787dc4)) +* 使用引擎标准的 lc-container-placeholder,支持 children 属性 ([b262665](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b262665)) + + + + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index e538802b8..1b576bba5 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-2", - "@ali/lowcode-react-renderer": "^0.12.1-2", - "@ali/lowcode-types": "^0.12.1-2", - "@ali/lowcode-utils": "^0.12.1-2", + "@ali/lowcode-designer": "^0.12.1-3", + "@ali/lowcode-react-renderer": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-3", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index a0cc88c08..41d42a6b7 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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index a837dd431..e2d51f60e 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 97c89ca07..f76402874 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/types/package.json b/packages/types/package.json index dbcda5f97..329c9e01c 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index be6434162..870cce93d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/utils/package.json b/packages/utils/package.json index fee73f840..f7f324ec6 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-2", + "version": "0.12.1-3", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-2", + "@ali/lowcode-types": "^0.12.1-3", "@alifd/next": "^1.19.16", "react": "^16" }, From 222f951d04e5f01604b72b0561e41e231ba7c80c Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 16:57:13 +0800 Subject: [PATCH 09/36] v0.12.1-7 --- CHANGELOG.md | 8 +++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 348 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5c78aeba..d03ff6f48 100644 --- a/CHANGELOG.md +++ b/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package undefined + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/lerna.json b/lerna.json index 3930d03bd..d081f7366 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-3", + "version": "0.12.1-7", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index e9e5ed7e9..598b321a8 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 730989604..afefc3a1f 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 2801860a3..53786ef25 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 08ac9da7b..af08a7d0e 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-3", + "version": "0.12.1-7", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 8f6c563e9..f72d6e941 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index b12c2b028..c3a4d9204 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-3", + "version": "0.12.1-7", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-editor-skeleton": "^0.12.1-3", - "@ali/lowcode-plugin-components-pane": "^0.12.1-3", - "@ali/lowcode-plugin-designer": "^0.12.1-3", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-3", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-3", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-skeleton": "^0.12.1-7", + "@ali/lowcode-plugin-components-pane": "^0.12.1-7", + "@ali/lowcode-plugin-designer": "^0.12.1-7", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-7", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-7", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-7", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-3", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-3", - "@ali/lowcode-plugin-zh-en": "^0.12.1-3", - "@ali/lowcode-react-renderer": "^0.12.1-3", - "@ali/lowcode-runtime": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-7", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-7", + "@ali/lowcode-plugin-zh-en": "^0.12.1-7", + "@ali/lowcode-react-renderer": "^0.12.1-7", + "@ali/lowcode-runtime": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 165a7f1ff..f1dc6c579 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index 192e69e0d..02354f524 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index a9033549e..3dc1802c0 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 04f5fcf1b..6b41de055 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index a203e4c0c..b0d4fd7ee 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 1b66e62c5..5176db9c6 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-editor-skeleton": "^0.12.1-3", - "@ali/lowcode-plugin-designer": "^0.12.1-3", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-skeleton": "^0.12.1-7", + "@ali/lowcode-plugin-designer": "^0.12.1-7", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-3", + "@ali/lowcode-editor-setters": "^0.12.1-7", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 907fc4366..3e0f68c4a 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index f4ccc2cb9..2fb8923bb 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-editor-skeleton": "^0.12.1-3", - "@ali/lowcode-plugin-designer": "^0.12.1-3", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-skeleton": "^0.12.1-7", + "@ali/lowcode-plugin-designer": "^0.12.1-7", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index e9ea41b5f..50acf1ef2 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index e6d6a9eb4..7cf1e5fa3 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-3", + "version": "0.12.1-7", "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-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index d291a413c..f7088e51c 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 554c9afe8..c11affcad 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 768c7b4de..2dcad278c 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 9f456290b..777242f93 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-3", + "version": "0.12.1-7", "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 69585ff54..bf1433282 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 1f0b3cd5b..6e9c15ae2 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 85843df7c..c26c0d039 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 28e657e91..a7c87d80c 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", "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 1da6cd6c4..58179f903 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 271620674..34e986d3a 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", "@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 c201493ab..f2334c6e3 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index fa5645d77..103f487d3 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.12.1-3", + "version": "0.12.1-7", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@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 814e690ea..22402818e 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index d619d6df3..28d8c2b2d 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 33848276b..6d2311cea 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 8631b62b0..21cbe99a9 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-react-renderer": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-react-renderer": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 759cec9c3..3600e6d0c 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 3c8f0a713..8c5eb511b 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 5b49288a1..b9e99ccd4 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 866734d07..414d6fa30 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-editor-skeleton": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-skeleton": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "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 index 964a312c5..a63640d01 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 77fc9eee9..f4c5746f4 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", "@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 2f2b7958d..e7a12449f 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 7c1fc5433..f6d518533 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.12.1-3", + "version": "0.12.1-7", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index bb0f95768..4671f03c5 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 1556e627a..21e90a6e0 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-3", + "@ali/lowcode-runtime": "^0.12.1-7", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 51044d1f1..83bed2718 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-1...v0.12.1-2) (2020-09-23) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 883f23725..6a702acba 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index bc5c3cf15..c7695b44b 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index fc97f8144..f2ea0a40a 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-rax-renderer": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-rax-renderer": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index a5aeeacc7..ec98cd380 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 1005ee09d..3134c77d0 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-3", + "@ali/lowcode-runtime": "^0.12.1-7", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 43013b3a4..b90250b3a 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index e36b76b23..25c33c087 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-3", + "version": "0.12.1-7", "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 aa96789b3..2574731e0 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 1b576bba5..c669fc71c 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-3", - "@ali/lowcode-react-renderer": "^0.12.1-3", - "@ali/lowcode-types": "^0.12.1-3", - "@ali/lowcode-utils": "^0.12.1-3", + "@ali/lowcode-designer": "^0.12.1-7", + "@ali/lowcode-react-renderer": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-7", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 41d42a6b7..d62294509 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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index e2d51f60e..bc3f02f78 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index f76402874..17a33fd75 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index 329c9e01c..48010941d 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 870cce93d..4cb27ca9c 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index f7f324ec6..5ba75fe48 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-3", + "version": "0.12.1-7", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-3", + "@ali/lowcode-types": "^0.12.1-7", "@alifd/next": "^1.19.16", "react": "^16" }, From b3c65975387fbb07e48aa2672b3c067c262ec328 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 17:04:41 +0800 Subject: [PATCH 10/36] v0.12.1-8 --- CHANGELOG.md | 8 +++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 348 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d03ff6f48..590e82512 100644 --- a/CHANGELOG.md +++ b/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package undefined + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/lerna.json b/lerna.json index d081f7366..340a1b20b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-7", + "version": "0.12.1-8", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 598b321a8..584d539e1 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index afefc3a1f..7ecb78ca8 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 53786ef25..973405ecc 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index af08a7d0e..b90cb0067 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-7", + "version": "0.12.1-8", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index f72d6e941..2cb9a3577 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index c3a4d9204..acc4b1f0c 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-7", + "version": "0.12.1-8", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-editor-skeleton": "^0.12.1-7", - "@ali/lowcode-plugin-components-pane": "^0.12.1-7", - "@ali/lowcode-plugin-designer": "^0.12.1-7", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-7", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-7", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-skeleton": "^0.12.1-8", + "@ali/lowcode-plugin-components-pane": "^0.12.1-8", + "@ali/lowcode-plugin-designer": "^0.12.1-8", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-8", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-8", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-8", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-7", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-7", - "@ali/lowcode-plugin-zh-en": "^0.12.1-7", - "@ali/lowcode-react-renderer": "^0.12.1-7", - "@ali/lowcode-runtime": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-8", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-8", + "@ali/lowcode-plugin-zh-en": "^0.12.1-8", + "@ali/lowcode-react-renderer": "^0.12.1-8", + "@ali/lowcode-runtime": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index f1dc6c579..f8bad6999 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index 02354f524..e6feb5c4c 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 3dc1802c0..c4b8439f4 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 6b41de055..ae5fa91dc 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index b0d4fd7ee..a940a8e09 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 5176db9c6..b4de3be6e 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-editor-skeleton": "^0.12.1-7", - "@ali/lowcode-plugin-designer": "^0.12.1-7", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-skeleton": "^0.12.1-8", + "@ali/lowcode-plugin-designer": "^0.12.1-8", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-7", + "@ali/lowcode-editor-setters": "^0.12.1-8", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 3e0f68c4a..7a4ac48ae 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 2fb8923bb..e14ca99ac 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-editor-skeleton": "^0.12.1-7", - "@ali/lowcode-plugin-designer": "^0.12.1-7", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-skeleton": "^0.12.1-8", + "@ali/lowcode-plugin-designer": "^0.12.1-8", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 50acf1ef2..03c2d51f6 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 7cf1e5fa3..ab2025384 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-7", + "version": "0.12.1-8", "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-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index f7088e51c..5c007cbb0 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index c11affcad..0cd961e4c 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 2dcad278c..aa6b6bc84 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 777242f93..b38c755f7 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-7", + "version": "0.12.1-8", "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 bf1433282..6387dfd15 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 6e9c15ae2..1f3c58166 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index c26c0d039..dd0b66c62 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index a7c87d80c..310dffebb 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", "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 58179f903..020308fe9 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 34e986d3a..34a581f84 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", "@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 f2334c6e3..906447304 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 103f487d3..0b3fdd22b 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.12.1-7", + "version": "0.12.1-8", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@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 22402818e..2a89d95cf 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 28d8c2b2d..2a028a0a4 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 6d2311cea..25b66956e 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 21cbe99a9..5f6fd6e77 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-react-renderer": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-react-renderer": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 3600e6d0c..176a120c9 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 8c5eb511b..0f619f44e 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index b9e99ccd4..cd61710c0 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 414d6fa30..106d456a5 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-editor-skeleton": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-skeleton": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "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 index a63640d01..ae1148eca 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index f4c5746f4..6dec2cdc7 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", "@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 e7a12449f..00a1efde1 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index f6d518533..92b01ac88 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.12.1-7", + "version": "0.12.1-8", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 4671f03c5..129199c3e 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 21e90a6e0..d7f5c2722 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-7", + "@ali/lowcode-runtime": "^0.12.1-8", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 83bed2718..d6847e3d7 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-2...v0.12.1-3) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 6a702acba..211baddac 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index c7695b44b..7858485df 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index f2ea0a40a..965f582f7 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-rax-renderer": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-rax-renderer": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index ec98cd380..10eb19826 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 3134c77d0..9632cd83f 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-7", + "@ali/lowcode-runtime": "^0.12.1-8", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index b90250b3a..f637503b6 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 25c33c087..e09ef0517 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-7", + "version": "0.12.1-8", "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 2574731e0..cfe975c3c 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index c669fc71c..fc358d5ef 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-7", - "@ali/lowcode-react-renderer": "^0.12.1-7", - "@ali/lowcode-types": "^0.12.1-7", - "@ali/lowcode-utils": "^0.12.1-7", + "@ali/lowcode-designer": "^0.12.1-8", + "@ali/lowcode-react-renderer": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-8", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index d62294509..a6d7661e9 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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index bc3f02f78..70d516520 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 17a33fd75..5b8201565 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index 48010941d..0c52ac214 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 4cb27ca9c..a77f1c976 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 5ba75fe48..c8f345609 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-7", + "version": "0.12.1-8", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-7", + "@ali/lowcode-types": "^0.12.1-8", "@alifd/next": "^1.19.16", "react": "^16" }, From 2a60fa9e50df8db5218261db102d3130a99895e6 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 17:07:58 +0800 Subject: [PATCH 11/36] v0.12.1-9 --- CHANGELOG.md | 8 +++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 348 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 590e82512..b4a7f69c2 100644 --- a/CHANGELOG.md +++ b/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package undefined + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/lerna.json b/lerna.json index 340a1b20b..7033d7a27 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-8", + "version": "0.12.1-9", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 584d539e1..79faf5200 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 7ecb78ca8..453e30500 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 973405ecc..a5973e115 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index b90cb0067..6d43f3c44 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-8", + "version": "0.12.1-9", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 2cb9a3577..c0909ad40 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index acc4b1f0c..65a7c2e1c 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-8", + "version": "0.12.1-9", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-editor-skeleton": "^0.12.1-8", - "@ali/lowcode-plugin-components-pane": "^0.12.1-8", - "@ali/lowcode-plugin-designer": "^0.12.1-8", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-8", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-8", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-skeleton": "^0.12.1-9", + "@ali/lowcode-plugin-components-pane": "^0.12.1-9", + "@ali/lowcode-plugin-designer": "^0.12.1-9", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-9", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-9", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-9", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-8", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-8", - "@ali/lowcode-plugin-zh-en": "^0.12.1-8", - "@ali/lowcode-react-renderer": "^0.12.1-8", - "@ali/lowcode-runtime": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-9", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-9", + "@ali/lowcode-plugin-zh-en": "^0.12.1-9", + "@ali/lowcode-react-renderer": "^0.12.1-9", + "@ali/lowcode-runtime": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index f8bad6999..85c000cf3 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index e6feb5c4c..006435e39 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index c4b8439f4..4346ad6c9 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index ae5fa91dc..dcd3065a0 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index a940a8e09..0b031be9f 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index b4de3be6e..d5003d4d7 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-editor-skeleton": "^0.12.1-8", - "@ali/lowcode-plugin-designer": "^0.12.1-8", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-skeleton": "^0.12.1-9", + "@ali/lowcode-plugin-designer": "^0.12.1-9", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-8", + "@ali/lowcode-editor-setters": "^0.12.1-9", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 7a4ac48ae..b95d71ffc 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index e14ca99ac..16a08c137 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-editor-skeleton": "^0.12.1-8", - "@ali/lowcode-plugin-designer": "^0.12.1-8", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-skeleton": "^0.12.1-9", + "@ali/lowcode-plugin-designer": "^0.12.1-9", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 03c2d51f6..e18ac8a4a 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index ab2025384..e1cdf3a80 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-8", + "version": "0.12.1-9", "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-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 5c007cbb0..48f3a5d3d 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 0cd961e4c..0479d595d 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index aa6b6bc84..c70b350c4 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index b38c755f7..fdbb671ef 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-8", + "version": "0.12.1-9", "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 6387dfd15..792abe04c 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 1f3c58166..950d85359 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index dd0b66c62..f18864b59 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 310dffebb..1d37c3f31 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", "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 020308fe9..f15e06f68 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 34a581f84..a3e8fef86 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", "@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 906447304..3287a0070 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 0b3fdd22b..bc94e58cc 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.12.1-8", + "version": "0.12.1-9", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@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 2a89d95cf..4f53953d8 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 2a028a0a4..602fce132 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 25b66956e..e3d5abe8a 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 5f6fd6e77..4da49b79a 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-react-renderer": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-react-renderer": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 176a120c9..4a518a9ed 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 0f619f44e..14afbced4 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index cd61710c0..284a6f250 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 106d456a5..f9b7964ef 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-editor-skeleton": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-skeleton": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "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 index ae1148eca..e899f57a7 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 6dec2cdc7..064195aeb 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", "@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 00a1efde1..ee586831b 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 92b01ac88..8736e16a0 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.12.1-8", + "version": "0.12.1-9", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 129199c3e..29bbc8f09 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index d7f5c2722..5091e332d 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-8", + "@ali/lowcode-runtime": "^0.12.1-9", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index d6847e3d7..a73f68ffd 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-3...v0.12.1-7) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 211baddac..43793f520 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 7858485df..071824eda 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 965f582f7..35985401f 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-rax-renderer": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-rax-renderer": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 10eb19826..e4e6c402b 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 9632cd83f..061cb4ebb 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-8", + "@ali/lowcode-runtime": "^0.12.1-9", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index f637503b6..e99050b8a 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index e09ef0517..cfd1fcbbb 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-8", + "version": "0.12.1-9", "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 cfe975c3c..5221afe2d 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index fc358d5ef..90bc347f3 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-8", - "@ali/lowcode-react-renderer": "^0.12.1-8", - "@ali/lowcode-types": "^0.12.1-8", - "@ali/lowcode-utils": "^0.12.1-8", + "@ali/lowcode-designer": "^0.12.1-9", + "@ali/lowcode-react-renderer": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-9", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index a6d7661e9..a211b2a65 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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 70d516520..d4570f4b5 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 5b8201565..e5a43d534 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index 0c52ac214..442da1dfe 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index a77f1c976..fe318d4d9 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index c8f345609..38e11e5f8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-8", + "version": "0.12.1-9", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-8", + "@ali/lowcode-types": "^0.12.1-9", "@alifd/next": "^1.19.16", "react": "^16" }, From 86a4d5ca93403f123550869ce9e8496b2eda1ccb Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 17:12:16 +0800 Subject: [PATCH 12/36] v0.12.1-10 --- CHANGELOG.md | 8 +++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 348 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a7f69c2..248c85cfb 100644 --- a/CHANGELOG.md +++ b/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package undefined + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/lerna.json b/lerna.json index 7033d7a27..bbc30b574 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-9", + "version": "0.12.1-10", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 79faf5200..9f40f628e 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 453e30500..14bbed438 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index a5973e115..ae91c53cf 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 6d43f3c44..e01d23990 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-9", + "version": "0.12.1-10", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index c0909ad40..e8504e884 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index 65a7c2e1c..f086b77fb 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-9", + "version": "0.12.1-10", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-editor-skeleton": "^0.12.1-9", - "@ali/lowcode-plugin-components-pane": "^0.12.1-9", - "@ali/lowcode-plugin-designer": "^0.12.1-9", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-9", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-9", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-skeleton": "^0.12.1-10", + "@ali/lowcode-plugin-components-pane": "^0.12.1-10", + "@ali/lowcode-plugin-designer": "^0.12.1-10", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-10", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-10", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-10", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-9", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-9", - "@ali/lowcode-plugin-zh-en": "^0.12.1-9", - "@ali/lowcode-react-renderer": "^0.12.1-9", - "@ali/lowcode-runtime": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-10", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-10", + "@ali/lowcode-plugin-zh-en": "^0.12.1-10", + "@ali/lowcode-react-renderer": "^0.12.1-10", + "@ali/lowcode-runtime": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 85c000cf3..4d2242514 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index 006435e39..8a6c6b27b 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 4346ad6c9..95f936ed1 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index dcd3065a0..be37d4828 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 0b031be9f..5e48cc0bb 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index d5003d4d7..f12b6a701 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-editor-skeleton": "^0.12.1-9", - "@ali/lowcode-plugin-designer": "^0.12.1-9", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-skeleton": "^0.12.1-10", + "@ali/lowcode-plugin-designer": "^0.12.1-10", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-9", + "@ali/lowcode-editor-setters": "^0.12.1-10", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index b95d71ffc..239f4cfcc 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 16a08c137..3d44bd88f 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-editor-skeleton": "^0.12.1-9", - "@ali/lowcode-plugin-designer": "^0.12.1-9", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-skeleton": "^0.12.1-10", + "@ali/lowcode-plugin-designer": "^0.12.1-10", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index e18ac8a4a..eae048f83 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index e1cdf3a80..36fb1dc61 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-9", + "version": "0.12.1-10", "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-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 48f3a5d3d..51f64d205 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 0479d595d..43bd670dc 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index c70b350c4..184eb4438 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index fdbb671ef..6098000b5 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-9", + "version": "0.12.1-10", "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 792abe04c..92e00e8fb 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 950d85359..e0528d530 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index f18864b59..b58692753 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 1d37c3f31..3acf43e5c 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", "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 f15e06f68..0a3e006b5 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index a3e8fef86..3bf2127bb 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", "@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 3287a0070..c1f9f3a2c 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index bc94e58cc..05fdd69ee 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.12.1-9", + "version": "0.12.1-10", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@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 4f53953d8..b7ed9cfa2 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 602fce132..5ce6f870b 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index e3d5abe8a..976d98e1e 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 4da49b79a..9dd25e0fb 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-react-renderer": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-react-renderer": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 4a518a9ed..f7f07eb02 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 14afbced4..352c2740e 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 284a6f250..f49aba5ed 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index f9b7964ef..3d89db900 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-editor-skeleton": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-skeleton": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "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 index e899f57a7..f6f30db02 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 064195aeb..78f028f8c 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", "@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 ee586831b..8c60856af 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 8736e16a0..3f535208e 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.12.1-9", + "version": "0.12.1-10", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 29bbc8f09..98ff8ece9 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 5091e332d..a10db347b 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-9", + "@ali/lowcode-runtime": "^0.12.1-10", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index a73f68ffd..039c120f8 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-7...v0.12.1-8) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 43793f520..74c3f54e8 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 071824eda..a3209ac59 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 35985401f..37553c5fa 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-rax-renderer": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-rax-renderer": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index e4e6c402b..1ba1033ff 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 061cb4ebb..f4f06b342 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-9", + "@ali/lowcode-runtime": "^0.12.1-10", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index e99050b8a..7c3212bd9 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index cfd1fcbbb..a08420205 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-9", + "version": "0.12.1-10", "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 5221afe2d..a2c002324 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 90bc347f3..f79b60e29 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-9", - "@ali/lowcode-react-renderer": "^0.12.1-9", - "@ali/lowcode-types": "^0.12.1-9", - "@ali/lowcode-utils": "^0.12.1-9", + "@ali/lowcode-designer": "^0.12.1-10", + "@ali/lowcode-react-renderer": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-10", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index a211b2a65..d87b392de 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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index d4570f4b5..898af40f8 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index e5a43d534..046228750 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index 442da1dfe..b7ddd8571 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index fe318d4d9..64397d4cc 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 38e11e5f8..7fe50048a 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-9", + "version": "0.12.1-10", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-9", + "@ali/lowcode-types": "^0.12.1-10", "@alifd/next": "^1.19.16", "react": "^16" }, From 85653847366d903e1380dc9596c294a819e82351 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sun, 27 Sep 2020 17:20:49 +0800 Subject: [PATCH 13/36] v0.12.1-11 --- CHANGELOG.md | 8 +++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 14 ++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 12 ++++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 4 +-- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 350 insertions(+), 110 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 248c85cfb..2fcef81ad 100644 --- a/CHANGELOG.md +++ b/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package undefined + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/lerna.json b/lerna.json index bbc30b574..f1f57ab63 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-10", + "version": "0.12.1-11", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 9f40f628e..19e9d7f1e 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 14bbed438..e55cf874d 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index ae91c53cf..ac1d0c4ae 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index e01d23990..cddc4ddbe 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-10", + "version": "0.12.1-11", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index e8504e884..0214e7497 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index f086b77fb..3e1d201f7 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-10", + "version": "0.12.1-11", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-editor-skeleton": "^0.12.1-10", - "@ali/lowcode-plugin-components-pane": "^0.12.1-10", - "@ali/lowcode-plugin-designer": "^0.12.1-10", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-10", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-10", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-skeleton": "^0.12.1-11", + "@ali/lowcode-plugin-components-pane": "^0.12.1-11", + "@ali/lowcode-plugin-designer": "^0.12.1-11", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-11", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-11", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-11", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-10", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-10", - "@ali/lowcode-plugin-zh-en": "^0.12.1-10", - "@ali/lowcode-react-renderer": "^0.12.1-10", - "@ali/lowcode-runtime": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-11", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-11", + "@ali/lowcode-plugin-zh-en": "^0.12.1-11", + "@ali/lowcode-react-renderer": "^0.12.1-11", + "@ali/lowcode-runtime": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 4d2242514..98b82be31 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index 8a6c6b27b..f3b3334f6 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 95f936ed1..aee434e0f 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index be37d4828..00e20378c 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 5e48cc0bb..701055570 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index f12b6a701..cb781ac36 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-editor-skeleton": "^0.12.1-10", - "@ali/lowcode-plugin-designer": "^0.12.1-10", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-skeleton": "^0.12.1-11", + "@ali/lowcode-plugin-designer": "^0.12.1-11", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-10", + "@ali/lowcode-editor-setters": "^0.12.1-11", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 239f4cfcc..bfd0a06f6 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 3d44bd88f..0068309f9 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-editor-skeleton": "^0.12.1-10", - "@ali/lowcode-plugin-designer": "^0.12.1-10", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-skeleton": "^0.12.1-11", + "@ali/lowcode-plugin-designer": "^0.12.1-11", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index eae048f83..6006628fa 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 36fb1dc61..0de59ae8d 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-10", + "version": "0.12.1-11", "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-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 51f64d205..c6cfce056 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 43bd670dc..069a0dcb5 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 184eb4438..1316f80f7 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 6098000b5..0043bc8aa 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-10", + "version": "0.12.1-11", "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 92e00e8fb..e19132d78 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index e0528d530..cc0ce8fc5 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index b58692753..9a557abd6 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 3acf43e5c..3a103f2ff 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", "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 0a3e006b5..9ebfd3f1e 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 3bf2127bb..18566966c 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", "@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 c1f9f3a2c..e5411fb33 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 05fdd69ee..b0bb1674f 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.12.1-10", + "version": "0.12.1-11", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@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 b7ed9cfa2..d230883c9 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 5ce6f870b..69e5dd416 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 976d98e1e..4efae1eca 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 9dd25e0fb..cf3021dec 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-react-renderer": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-react-renderer": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index f7f07eb02..c00e01c5d 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 352c2740e..8c2bcdbe3 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index f49aba5ed..25e228371 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 3d89db900..f707808fc 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-editor-skeleton": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-skeleton": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "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 index f6f30db02..4a3cc9cbb 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 78f028f8c..7ccb11338 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", "@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 8c60856af..ef8063dc6 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 3f535208e..8371c7f1d 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.12.1-10", + "version": "0.12.1-11", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 98ff8ece9..46262cdc5 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index a10db347b..2baeee28c 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-10", + "@ali/lowcode-runtime": "^0.12.1-11", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 039c120f8..63a2176b2 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-8...v0.12.1-9) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 74c3f54e8..0a1abb519 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index a3209ac59..74b3a99f1 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 37553c5fa..370cb53a0 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-rax-renderer": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-rax-renderer": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", @@ -57,5 +57,5 @@ "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-2/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-10/build/index.html" } diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 1ba1033ff..d2f71aa79 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index f4f06b342..c11bd012c 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-10", + "@ali/lowcode-runtime": "^0.12.1-11", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 7c3212bd9..389dd8000 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index a08420205..b265bdb18 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-2/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-10/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index a2c002324..5ed76129a 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index f79b60e29..a264f6b96 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-10", - "@ali/lowcode-react-renderer": "^0.12.1-10", - "@ali/lowcode-types": "^0.12.1-10", - "@ali/lowcode-utils": "^0.12.1-10", + "@ali/lowcode-designer": "^0.12.1-11", + "@ali/lowcode-react-renderer": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-11", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index d87b392de..c45ee3aff 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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 898af40f8..986cf93dc 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 046228750..dcee0d35a 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index b7ddd8571..65e024c57 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 64397d4cc..5d8ce0a83 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 7fe50048a..89a7b7733 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-10", + "version": "0.12.1-11", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-10", + "@ali/lowcode-types": "^0.12.1-11", "@alifd/next": "^1.19.16", "react": "^16" }, From dfb2b4766e813dd06680758fbab659fe16303177 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 28 Sep 2020 10:40:04 +0800 Subject: [PATCH 14/36] fix: update package.json --- packages/editor-preset-vision/package.json | 1 + packages/rax-simulator-renderer/package.json | 2 +- packages/react-renderer/package.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 0068309f9..df0ee1303 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -20,6 +20,7 @@ "@ali/lowcode-editor-skeleton": "^0.12.1-11", "@ali/lowcode-plugin-designer": "^0.12.1-11", "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", + "@ali/lowcode-editor-setters": "^0.12.1-11", "@ali/lowcode-utils": "^0.12.1-11", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 370cb53a0..6671ec308 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -57,5 +57,5 @@ "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-10/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-11/build/index.html" } diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index b265bdb18..0ae54d419 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-10/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-11/build/index.html" } From 341853a0fd270f93eebc852f446c3e44e6e188f3 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 28 Sep 2020 14:18:15 +0800 Subject: [PATCH 15/36] v0.12.1-12 --- CHANGELOG.md | 11 +++++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 11 +++++++ packages/editor-preset-vision/package.json | 16 +++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 11 +++++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 11 +++++++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 361 insertions(+), 109 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fcef81ad..6038e9d29 100644 --- a/CHANGELOG.md +++ b/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + +### Bug Fixes + +* update package.json ([dfb2b47](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dfb2b47)) + + + + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/lerna.json b/lerna.json index f1f57ab63..dab4f8ba7 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-11", + "version": "0.12.1-12", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 19e9d7f1e..ac227ee75 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index e55cf874d..c5b0ee91f 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index ac1d0c4ae..f20d41179 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index cddc4ddbe..47f576387 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-11", + "version": "0.12.1-12", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 0214e7497..c1e0541bf 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index 3e1d201f7..0a6e27f19 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-11", + "version": "0.12.1-12", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-editor-skeleton": "^0.12.1-11", - "@ali/lowcode-plugin-components-pane": "^0.12.1-11", - "@ali/lowcode-plugin-designer": "^0.12.1-11", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-11", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-11", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-skeleton": "^0.12.1-12", + "@ali/lowcode-plugin-components-pane": "^0.12.1-12", + "@ali/lowcode-plugin-designer": "^0.12.1-12", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-12", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-12", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-12", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-11", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-11", - "@ali/lowcode-plugin-zh-en": "^0.12.1-11", - "@ali/lowcode-react-renderer": "^0.12.1-11", - "@ali/lowcode-runtime": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-12", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-12", + "@ali/lowcode-plugin-zh-en": "^0.12.1-12", + "@ali/lowcode-react-renderer": "^0.12.1-12", + "@ali/lowcode-runtime": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 98b82be31..74d7db9a0 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index f3b3334f6..d26d7dbec 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index aee434e0f..ec1b99e63 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 00e20378c..9787a2004 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 701055570..a901d5736 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index cb781ac36..66ef62b50 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-editor-skeleton": "^0.12.1-11", - "@ali/lowcode-plugin-designer": "^0.12.1-11", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-skeleton": "^0.12.1-12", + "@ali/lowcode-plugin-designer": "^0.12.1-12", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-11", + "@ali/lowcode-editor-setters": "^0.12.1-12", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index bfd0a06f6..67d630462 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + +### Bug Fixes + +* update package.json ([dfb2b47](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dfb2b47)) + + + + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index df0ee1303..9b8ee31d0 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,13 +15,13 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-editor-skeleton": "^0.12.1-11", - "@ali/lowcode-plugin-designer": "^0.12.1-11", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-11", - "@ali/lowcode-editor-setters": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-setters": "^0.12.1-12", + "@ali/lowcode-editor-skeleton": "^0.12.1-12", + "@ali/lowcode-plugin-designer": "^0.12.1-12", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 6006628fa..8af95e747 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 0de59ae8d..3b2e51707 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-11", + "version": "0.12.1-12", "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-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index c6cfce056..de2772a68 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 069a0dcb5..2bf487fa3 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 1316f80f7..6a7a6b4e8 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 0043bc8aa..05efbde8c 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-11", + "version": "0.12.1-12", "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 e19132d78..006230d95 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index cc0ce8fc5..85887aa14 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 9a557abd6..e280f0767 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 3a103f2ff..9cd38227e 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", "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 9ebfd3f1e..b7d0a7dc4 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 18566966c..98ed7b002 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", "@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 e5411fb33..718cab0e5 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index b0bb1674f..a752c55bb 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.12.1-11", + "version": "0.12.1-12", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@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 d230883c9..f3108c9ce 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 69e5dd416..2df1d5619 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 4efae1eca..d673eb0ab 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index cf3021dec..aa2b524a6 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-react-renderer": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-react-renderer": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index c00e01c5d..227b8a11c 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 8c2bcdbe3..da933dedf 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 25e228371..54958726c 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index f707808fc..8e1407ae0 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-editor-skeleton": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-skeleton": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "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 index 4a3cc9cbb..67f7da11e 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 7ccb11338..57126e14e 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", "@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 ef8063dc6..3f33b2ff1 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 8371c7f1d..b9a8254d2 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.12.1-11", + "version": "0.12.1-12", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 46262cdc5..95b09a042 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 2baeee28c..8817da4c7 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-11", + "@ali/lowcode-runtime": "^0.12.1-12", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 63a2176b2..2c8682a8f 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-9...v0.12.1-10) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 0a1abb519..57cbcc69f 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 74b3a99f1..61683492c 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-simulator-renderer/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + +### Bug Fixes + +* update package.json ([dfb2b47](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dfb2b47)) + + + + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 6671ec308..725bb7a10 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-rax-renderer": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-rax-renderer": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index d2f71aa79..49ad6dccc 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index c11bd012c..6fb18da80 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-11", + "@ali/lowcode-runtime": "^0.12.1-12", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 389dd8000..e522864da 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + +### Bug Fixes + +* update package.json ([dfb2b47](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dfb2b47)) + + + + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 0ae54d419..9f755d94d 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-11", + "version": "0.12.1-12", "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 5ed76129a..e5c07dbb4 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index a264f6b96..a47048b2b 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-11", - "@ali/lowcode-react-renderer": "^0.12.1-11", - "@ali/lowcode-types": "^0.12.1-11", - "@ali/lowcode-utils": "^0.12.1-11", + "@ali/lowcode-designer": "^0.12.1-12", + "@ali/lowcode-react-renderer": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-12", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index c45ee3aff..9d51bca2e 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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 986cf93dc..92a2c13b7 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index dcee0d35a..22df6b857 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/types/package.json b/packages/types/package.json index 65e024c57..4e2b1bb02 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 5d8ce0a83..3ec595628 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 89a7b7733..b0eab9be4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-11", + "version": "0.12.1-12", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-11", + "@ali/lowcode-types": "^0.12.1-12", "@alifd/next": "^1.19.16", "react": "^16" }, From d2fe75d83d7d5aea56b342cdfbdefbf3939100be Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 28 Sep 2020 14:22:53 +0800 Subject: [PATCH 16/36] fix: remove engine-tabpane css className --- packages/editor-skeleton/src/layouts/right-area.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-skeleton/src/layouts/right-area.tsx b/packages/editor-skeleton/src/layouts/right-area.tsx index 448788dd6..ed9fd60f2 100644 --- a/packages/editor-skeleton/src/layouts/right-area.tsx +++ b/packages/editor-skeleton/src/layouts/right-area.tsx @@ -13,7 +13,7 @@ export default class RightArea extends Component<{ area: Area }> { render() { const { area } = this.props; return ( -
From 6f8ff865194384d4b5f6e9d13887a46f43d0938d Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 28 Sep 2020 17:44:06 +0800 Subject: [PATCH 17/36] v0.12.1-13 --- CHANGELOG.md | 11 +++++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 16 +++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 11 +++++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 12 ++++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 4 +-- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 357 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6038e9d29..ecbee1e4d 100644 --- a/CHANGELOG.md +++ b/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + +### Bug Fixes + +* remove engine-tabpane css className ([d2fe75d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d2fe75d)) + + + + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/lerna.json b/lerna.json index dab4f8ba7..7804b853b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-12", + "version": "0.12.1-13", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index ac227ee75..1f8cadc5f 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index c5b0ee91f..8366f611b 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index f20d41179..9025b7cb1 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 47f576387..4fb5f6675 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-12", + "version": "0.12.1-13", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index c1e0541bf..c2b4cc873 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/demo/package.json b/packages/demo/package.json index 0a6e27f19..b982cb4f9 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-12", + "version": "0.12.1-13", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-editor-skeleton": "^0.12.1-12", - "@ali/lowcode-plugin-components-pane": "^0.12.1-12", - "@ali/lowcode-plugin-designer": "^0.12.1-12", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-12", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-12", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-skeleton": "^0.12.1-13", + "@ali/lowcode-plugin-components-pane": "^0.12.1-13", + "@ali/lowcode-plugin-designer": "^0.12.1-13", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-13", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-13", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-13", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-12", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-12", - "@ali/lowcode-plugin-zh-en": "^0.12.1-12", - "@ali/lowcode-react-renderer": "^0.12.1-12", - "@ali/lowcode-runtime": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-13", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-13", + "@ali/lowcode-plugin-zh-en": "^0.12.1-13", + "@ali/lowcode-react-renderer": "^0.12.1-13", + "@ali/lowcode-runtime": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 74d7db9a0..b8212b1de 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/designer/package.json b/packages/designer/package.json index d26d7dbec..cf6683c6a 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index ec1b99e63..c7c87e751 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 9787a2004..57060410a 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index a901d5736..9e36a2da6 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 66ef62b50..fab122e22 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-editor-skeleton": "^0.12.1-12", - "@ali/lowcode-plugin-designer": "^0.12.1-12", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-skeleton": "^0.12.1-13", + "@ali/lowcode-plugin-designer": "^0.12.1-13", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-12", + "@ali/lowcode-editor-setters": "^0.12.1-13", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 67d630462..9d7c22753 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 9b8ee31d0..b4d3f0ea2 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,13 +15,13 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-editor-setters": "^0.12.1-12", - "@ali/lowcode-editor-skeleton": "^0.12.1-12", - "@ali/lowcode-plugin-designer": "^0.12.1-12", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-setters": "^0.12.1-13", + "@ali/lowcode-editor-skeleton": "^0.12.1-13", + "@ali/lowcode-plugin-designer": "^0.12.1-13", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 8af95e747..22b5f551d 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 3b2e51707..0ae441343 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-12", + "version": "0.12.1-13", "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-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index de2772a68..93a2300c0 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + +### Bug Fixes + +* remove engine-tabpane css className ([d2fe75d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d2fe75d)) + + + + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 2bf487fa3..79e39b3f2 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 6a7a6b4e8..4763a9326 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 05efbde8c..7d928643c 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-12", + "version": "0.12.1-13", "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 006230d95..d907e0d05 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 85887aa14..d3c8a1f1f 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index e280f0767..6860ae763 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 9cd38227e..922182373 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", "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 b7d0a7dc4..60f561120 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 98ed7b002..0bfa14fb4 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", "@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 718cab0e5..70b137b18 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index a752c55bb..60fd5e041 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.12.1-12", + "version": "0.12.1-13", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@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 f3108c9ce..8a8602895 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 2df1d5619..9b484c945 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index d673eb0ab..33dc2c6ac 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index aa2b524a6..e75801354 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-react-renderer": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-react-renderer": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 227b8a11c..0b9217e9a 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index da933dedf..0b28dbd85 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 54958726c..c0e52c2e1 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 8e1407ae0..bafe36b3d 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-editor-skeleton": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-skeleton": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "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 index 67f7da11e..219ffdc16 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 57126e14e..80bad456a 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", "@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 3f33b2ff1..4963f2dc8 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index b9a8254d2..d83e3358c 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.12.1-12", + "version": "0.12.1-13", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 95b09a042..14eabce75 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 8817da4c7..cf9a7176c 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-12", + "@ali/lowcode-runtime": "^0.12.1-13", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 2c8682a8f..f3c96bac7 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-10...v0.12.1-11) (2020-09-27) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 57cbcc69f..d2f89cc3b 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 61683492c..9a6b5f1b7 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 725bb7a10..3bff694ce 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-rax-renderer": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-rax-renderer": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", @@ -57,5 +57,5 @@ "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-11/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-12/build/index.html" } diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 49ad6dccc..838e05286 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 6fb18da80..b3c85f39c 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-12", + "@ali/lowcode-runtime": "^0.12.1-13", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index e522864da..797a9c8bf 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 9f755d94d..18e3819db 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-11/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-12/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index e5c07dbb4..6704fc9b8 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index a47048b2b..d6ed8086f 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-12", - "@ali/lowcode-react-renderer": "^0.12.1-12", - "@ali/lowcode-types": "^0.12.1-12", - "@ali/lowcode-utils": "^0.12.1-12", + "@ali/lowcode-designer": "^0.12.1-13", + "@ali/lowcode-react-renderer": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-13", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 9d51bca2e..5a28f36d8 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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 92a2c13b7..1eeab06c5 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 22df6b857..ede59319f 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/types/package.json b/packages/types/package.json index 4e2b1bb02..d044cb1a5 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 3ec595628..b403fec4d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/utils/package.json b/packages/utils/package.json index b0eab9be4..964f75af7 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-12", + "version": "0.12.1-13", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-12", + "@ali/lowcode-types": "^0.12.1-13", "@alifd/next": "^1.19.16", "react": "^16" }, From ff576b9e190af47266610bd0fec19c4b535ca00c Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 28 Sep 2020 17:46:56 +0800 Subject: [PATCH 18/36] =?UTF-8?q?fix:=20pane=20=E5=AE=BD=E5=BA=A6=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E8=AE=BE=E7=BD=AE=E4=B8=BA=20300?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-skeleton/src/layouts/workbench.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-skeleton/src/layouts/workbench.less b/packages/editor-skeleton/src/layouts/workbench.less index a0e830364..a20d84714 100644 --- a/packages/editor-skeleton/src/layouts/workbench.less +++ b/packages/editor-skeleton/src/layouts/workbench.less @@ -16,8 +16,8 @@ --right-area-width: 300px; --top-area-height: 48px; --toolbar-height: 36px; - --dock-pane-width: 280px; - --dock-fixed-pane-width: 280px; + --dock-pane-width: 300px; + --dock-fixed-pane-width: 300px; } @media (min-width: 1860px) { From d939285155787b51e0d2f593887f915a35d39c94 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Tue, 29 Sep 2020 11:11:31 +0800 Subject: [PATCH 19/36] =?UTF-8?q?fix:=20lc-container-placeholder=20?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../react-simulator-renderer/src/renderer.less | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/packages/react-simulator-renderer/src/renderer.less b/packages/react-simulator-renderer/src/renderer.less index d8c580549..72a823d0a 100644 --- a/packages/react-simulator-renderer/src/renderer.less +++ b/packages/react-simulator-renderer/src/renderer.less @@ -54,13 +54,15 @@ html.engine-cursor-ew-resize, html.engine-cursor-ew-resize * { } .lc-container-placeholder { - height: 44px; - line-height: 44px; - background-color: #f0f0f0; - border-color: #a7b1bd; + min-height: 60px; + height: 100%; + width: 100%; + background-color: rgb(240, 240, 240); border: 1px dotted; - color: #a7b1bd; - text-align: center; + color: rgb(167, 177, 189); + display: flex; + align-items: center; + justify-content: center; } body.engine-document { From fe412a26211f7f30466a3c68c5dbb2922036032a Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sat, 10 Oct 2020 13:59:12 +0800 Subject: [PATCH 20/36] v0.12.1-14 --- CHANGELOG.md | 12 ++++++++ lerna.json | 2 +- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 16 +++++----- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 11 +++++++ packages/editor-skeleton/package.json | 10 +++---- 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 | 8 ++--- 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 | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- 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 | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 12 ++++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 4 +-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 4 +-- .../react-simulator-renderer/CHANGELOG.md | 11 +++++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 361 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecbee1e4d..a63672fc7 100644 --- a/CHANGELOG.md +++ b/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + +### Bug Fixes + +* lc-container-placeholder 样式修改 ([d939285](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d939285)) +* pane 宽度统一设置为 300 ([ff576b9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ff576b9)) + + + + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/lerna.json b/lerna.json index 7804b853b..4c847bbe0 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "0.12.1-13", + "version": "0.12.1-14", "npmClient": "tyarn", "registry": "http://registry.npm.alibaba-inc.com", "useWorkspaces": true, diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 1f8cadc5f..386f23edc 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 8366f611b..d8133dcbb 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "files": [ diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 9025b7cb1..8dc00287a 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 4fb5f6675..24e2996ff 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "0.12.1-13", + "version": "0.12.1-14", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index c2b4cc873..94f2bc8a5 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/demo/package.json b/packages/demo/package.json index b982cb4f9..0ba7e85bd 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.12.1-13", + "version": "0.12.1-14", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-editor-skeleton": "^0.12.1-13", - "@ali/lowcode-plugin-components-pane": "^0.12.1-13", - "@ali/lowcode-plugin-designer": "^0.12.1-13", - "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-13", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", - "@ali/lowcode-plugin-sample-logo": "^0.12.1-13", - "@ali/lowcode-plugin-sample-preview": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-editor-skeleton": "^0.12.1-14", + "@ali/lowcode-plugin-components-pane": "^0.12.1-14", + "@ali/lowcode-plugin-designer": "^0.12.1-14", + "@ali/lowcode-plugin-event-bind-dialog": "^0.12.1-14", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-14", + "@ali/lowcode-plugin-sample-logo": "^0.12.1-14", + "@ali/lowcode-plugin-sample-preview": "^0.12.1-14", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.12.1-13", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-13", - "@ali/lowcode-plugin-zh-en": "^0.12.1-13", - "@ali/lowcode-react-renderer": "^0.12.1-13", - "@ali/lowcode-runtime": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-plugin-undo-redo": "^0.12.1-14", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.12.1-14", + "@ali/lowcode-plugin-zh-en": "^0.12.1-14", + "@ali/lowcode-react-renderer": "^0.12.1-14", + "@ali/lowcode-runtime": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index b8212b1de..51514e795 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/designer/package.json b/packages/designer/package.json index cf6683c6a..ee21fd497 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index c7c87e751..e592e7f48 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 57060410a..b62df2ee3 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 9e36a2da6..dc0cd95f8 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index fab122e22..1ee9248c6 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-editor-skeleton": "^0.12.1-13", - "@ali/lowcode-plugin-designer": "^0.12.1-13", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-editor-skeleton": "^0.12.1-14", + "@ali/lowcode-plugin-designer": "^0.12.1-14", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.12.1-13", + "@ali/lowcode-editor-setters": "^0.12.1-14", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 9d7c22753..e40c4431f 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index b4d3f0ea2..527db52a3 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,13 +15,13 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-editor-setters": "^0.12.1-13", - "@ali/lowcode-editor-skeleton": "^0.12.1-13", - "@ali/lowcode-plugin-designer": "^0.12.1-13", - "@ali/lowcode-plugin-outline-pane": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-editor-setters": "^0.12.1-14", + "@ali/lowcode-editor-skeleton": "^0.12.1-14", + "@ali/lowcode-plugin-designer": "^0.12.1-14", + "@ali/lowcode-plugin-outline-pane": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 22b5f551d..f7c3aeb84 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 0ae441343..173f6693a 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.12.1-13", + "version": "0.12.1-14", "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-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 93a2300c0..d391798b1 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + +### Bug Fixes + +* pane 宽度统一设置为 300 ([ff576b9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ff576b9)) + + + + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index 79e39b3f2..ba917c927 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 4763a9326..98434134f 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 7d928643c..4bd4de14f 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "0.12.1-13", + "version": "0.12.1-14", "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 d907e0d05..5bb0659c4 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index d3c8a1f1f..01e54ba11 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", "@alifd/next": "^1.19.19", "react": "^16.8.1" }, diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 6860ae763..200f4c5b0 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 922182373..b0dac33e0 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", "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 60f561120..f3e702499 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 0bfa14fb4..1ec7fad2e 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", "@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 70b137b18..87e08edde 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 60fd5e041..a7b6e96e0 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.12.1-13", + "version": "0.12.1-14", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@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 8a8602895..82ca55624 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index 9b484c945..f2f83d4c0 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 33dc2c6ac..c0922d1fa 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index e75801354..020780b60 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-react-renderer": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-react-renderer": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 0b9217e9a..8b1e4602c 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 0b28dbd85..807796667 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index c0e52c2e1..4cdb0d6b4 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index bafe36b3d..be551b9f2 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-editor-skeleton": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-editor-skeleton": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "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 index 219ffdc16..670b6e90d 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 80bad456a..6fb2400c6 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", "@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 4963f2dc8..ab44a920c 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index d83e3358c..050495044 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.12.1-13", + "version": "0.12.1-14", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-editor-core": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 14eabce75..598721005 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index cf9a7176c..19a34c7e0 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-13", + "@ali/lowcode-runtime": "^0.12.1-14", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index f3c96bac7..5e19f7244 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [0.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) @@ -11,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-rax-renderer - + ## [0.12.1-12](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-11...v0.12.1-12) (2020-09-28) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index d2f89cc3b..bc7269efd 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/ui-table": "^1.0.1-beta.6", "classnames": "^2.2.6", "debug": "^4.1.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 9a6b5f1b7..e46a6845c 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 3bff694ce..707604d0c 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-rax-renderer": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-rax-renderer": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", @@ -57,5 +57,5 @@ "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-12/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.12.1-13/build/index.html" } diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 838e05286..352f02603 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index b3c85f39c..5171876ed 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^0.12.1-13", + "@ali/lowcode-runtime": "^0.12.1-14", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 797a9c8bf..4483bf729 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index 18e3819db..e6e90ca88 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-12/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-13/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 6704fc9b8..cb57925bd 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + +### Bug Fixes + +* lc-container-placeholder 样式修改 ([d939285](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d939285)) + + + + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index d6ed8086f..67c4b5601 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^0.12.1-13", - "@ali/lowcode-react-renderer": "^0.12.1-13", - "@ali/lowcode-types": "^0.12.1-13", - "@ali/lowcode-utils": "^0.12.1-13", + "@ali/lowcode-designer": "^0.12.1-14", + "@ali/lowcode-react-renderer": "^0.12.1-14", + "@ali/lowcode-types": "^0.12.1-14", + "@ali/lowcode-utils": "^0.12.1-14", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 5a28f36d8..2e6ddce7f 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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 1eeab06c5..03d3140c0 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index ede59319f..b9712fe67 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/types/package.json b/packages/types/package.json index d044cb1a5..649f8de43 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b403fec4d..fb209fcd2 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/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.12.1-14](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-13...v0.12.1-14) (2020-10-10) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.12.1-13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/v0.12.1-12...v0.12.1-13) (2020-09-28) diff --git a/packages/utils/package.json b/packages/utils/package.json index 964f75af7..8c03e01f1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.12.1-13", + "version": "0.12.1-14", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.12.1-13", + "@ali/lowcode-types": "^0.12.1-14", "@alifd/next": "^1.19.16", "react": "^16" }, From 542586421f299d4a28d04c4585f430631c8f0435 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sat, 10 Oct 2020 14:01:02 +0800 Subject: [PATCH 21/36] =?UTF-8?q?feat:=20getSuitableInsertion=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81=20node=20=E5=8F=82=E6=95=B0=EF=BC=8CcheckNestingDown?= =?UTF-8?q?=20=E5=B0=86=20target=20=E8=BD=AC=E6=8D=A2=E4=B8=BA=20Node?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/designer/src/component-meta.ts | 5 ++++- packages/designer/src/designer/designer.ts | 10 ++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/packages/designer/src/component-meta.ts b/packages/designer/src/component-meta.ts index c14133262..432474c56 100644 --- a/packages/designer/src/component-meta.ts +++ b/packages/designer/src/component-meta.ts @@ -13,7 +13,7 @@ import { FieldConfig, } from '@ali/lowcode-types'; import { computed } from '@ali/lowcode-editor-core'; -import { Node, ParentalNode } from './document'; +import { isNode, Node, ParentalNode } from './document'; import { Designer } from './designer'; import { intlNode } from './locale'; import { IconContainer } from './icons/container'; @@ -264,6 +264,9 @@ export class ComponentMeta { checkNestingDown(my: Node, target: Node | NodeSchema) { // 检查父子关系,直接约束型,在画布中拖拽直接掠过目标容器 if (this.childWhitelist) { + if (!isNode(target)) { + target = new Node(my.document, target); + } return this.childWhitelist(target, my); } return true; diff --git a/packages/designer/src/designer/designer.ts b/packages/designer/src/designer/designer.ts index 5098bfd2f..197bcfe67 100644 --- a/packages/designer/src/designer/designer.ts +++ b/packages/designer/src/designer/designer.ts @@ -9,6 +9,7 @@ import { CompositeObject, PropsList, isNodeSchema, + NodeSchema, } from '@ali/lowcode-types'; import { Project } from '../project'; import { Node, DocumentModel, insertChildren, isRootNode, ParentalNode, TransformStage } from '../document'; @@ -294,7 +295,7 @@ export class Designer { /** * 获得合适的插入位置 */ - getSuitableInsertion(): { target: ParentalNode; index?: number } | null { + getSuitableInsertion(insertNode?: Node | NodeSchema): { target: ParentalNode; index?: number } | null { const activedDoc = this.project.currentDocument; if (!activedDoc) { return null; @@ -306,7 +307,7 @@ export class Designer { target = activedDoc.rootNode; } else { const node = nodes[0]; - if (isRootNode(node)) { + if (isRootNode(node) || node.componentMeta.isContainer) { target = node; } else { // FIXME!!, parent maybe null @@ -314,6 +315,11 @@ export class Designer { index = node.index + 1; } } + + if (target && insertNode && !target.componentMeta.checkNestingDown(target, insertNode)) { + return null; + } + return { target, index }; } From 9816859c3f1de345377110faef0336fa9576b9fc Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sat, 10 Oct 2020 16:36:56 +0800 Subject: [PATCH 22/36] =?UTF-8?q?fix:=20=E6=A0=B7=E5=BC=8F=E5=BE=AE?= =?UTF-8?q?=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-skeleton/src/layouts/main-area.tsx | 2 +- packages/react-renderer/package.json | 2 +- packages/react-simulator-renderer/src/renderer.less | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/editor-skeleton/src/layouts/main-area.tsx b/packages/editor-skeleton/src/layouts/main-area.tsx index edd0d1aff..1034119a1 100644 --- a/packages/editor-skeleton/src/layouts/main-area.tsx +++ b/packages/editor-skeleton/src/layouts/main-area.tsx @@ -14,7 +14,7 @@ export default class MainArea extends Component<{ area: Area +
{area.container.items.map((item) => item.content)}
); diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index e6e90ca88..b3255ae87 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -54,5 +54,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-13/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@0.12.1-14/build/index.html" } diff --git a/packages/react-simulator-renderer/src/renderer.less b/packages/react-simulator-renderer/src/renderer.less index 72a823d0a..8bf34b972 100644 --- a/packages/react-simulator-renderer/src/renderer.less +++ b/packages/react-simulator-renderer/src/renderer.less @@ -63,6 +63,7 @@ html.engine-cursor-ew-resize, html.engine-cursor-ew-resize * { display: flex; align-items: center; justify-content: center; + font-size: 14px; } body.engine-document { From de4074aa1903031966ff27192a880ed9ef806d5c Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Sat, 10 Oct 2020 18:51:19 +0800 Subject: [PATCH 23/36] =?UTF-8?q?fix:=20stage-box=20=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-skeleton/src/components/stage-box/index.less | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/editor-skeleton/src/components/stage-box/index.less b/packages/editor-skeleton/src/components/stage-box/index.less index bd24f2933..a4df85cb8 100644 --- a/packages/editor-skeleton/src/components/stage-box/index.less +++ b/packages/editor-skeleton/src/components/stage-box/index.less @@ -41,10 +41,11 @@ .skeleton-stagebox-stage-arrow { position: absolute; - left: 3px; + left: 8px; top: 50%; transform: translateY(-50%) rotate(90deg); opacity: 0.6; + width: 12px; } .skeleton-stagebox-stage-title { font-weight: bold; @@ -57,7 +58,7 @@ } .skeleton-stagebox-stage-exit { position: absolute; - right: 3px; + right: 8px; top: 50%; transform: translateY(-50%); opacity: 0.6; From 80d74d6693086b2110aba5cdda2daae4669edb83 Mon Sep 17 00:00:00 2001 From: "mario.gk" Date: Mon, 12 Oct 2020 17:48:08 +0800 Subject: [PATCH 24/36] =?UTF-8?q?feat:=20=E4=BD=BF=E7=94=A8=20release/1.0.?= =?UTF-8?q?0=20=E7=9A=84=20editor-setters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/demo/build.json | 4 +- packages/demo/build.plugin.js | 14 --- packages/demo/package.json | 1 - packages/demo/public/index.html | 7 ++ packages/editor-preset-vision/build.json | 4 +- packages/editor-setters/package.json | 6 +- .../src/classname-setter/index.tsx | 90 +++++++++++++++++++ .../src/expression-setter/index.tsx | 36 +++----- packages/editor-setters/src/index.tsx | 4 +- .../editor-setters/src/json-setter/index.tsx | 48 +++++----- 10 files changed, 142 insertions(+), 72 deletions(-) create mode 100644 packages/editor-setters/src/classname-setter/index.tsx diff --git a/packages/demo/build.json b/packages/demo/build.json index 42ade8d92..92c4ecadb 100644 --- a/packages/demo/build.json +++ b/packages/demo/build.json @@ -17,7 +17,9 @@ "@alifd/next": "var window.Next", "@ali/visualengine": "var window.VisualEngine", "@ali/visualengine-utils": "var window.VisualEngineUtils", - "rax": "var window.Rax" + "rax": "var window.Rax", + "monaco-editor/esm/vs/editor/editor.api":"var window.monaco", + "monaco-editor/esm/vs/editor/editor.main.js":"var window.monaco" }, "plugins": [ [ diff --git a/packages/demo/build.plugin.js b/packages/demo/build.plugin.js index 1e50c137b..b271703c3 100644 --- a/packages/demo/build.plugin.js +++ b/packages/demo/build.plugin.js @@ -1,5 +1,4 @@ const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); module.exports = ({ onGetWebpackConfig }) => { onGetWebpackConfig((config) => { @@ -8,19 +7,6 @@ module.exports = ({ onGetWebpackConfig }) => { configFile: './tsconfig.json', }, ]); - - config - // 定义插件名称 - .plugin('MonacoWebpackPlugin') - // 第一项为具体插件,第二项为插件参数 - .use( - new MonacoWebpackPlugin({ - languages: ['typescript', 'css', 'json'], - features: ['!gotoSymbol'], - }), - [], - ); - config.plugins.delete('hot'); config.devServer.hot(false); }); diff --git a/packages/demo/package.json b/packages/demo/package.json index 0ba7e85bd..c3e106e2f 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -52,7 +52,6 @@ "build-plugin-fusion": "^0.1.0", "build-plugin-moment-locales": "^0.1.0", "build-plugin-react-app": "^1.1.2", - "monaco-editor-webpack-plugin": "^1.9.0", "tsconfig-paths-webpack-plugin": "^3.2.0" } } diff --git a/packages/demo/public/index.html b/packages/demo/public/index.html index 6ab2a7324..ebfbbc27a 100644 --- a/packages/demo/public/index.html +++ b/packages/demo/public/index.html @@ -6,6 +6,7 @@ LowCodeEngine Editor DEMO + @@ -17,6 +18,12 @@ + + + +