From 795a4e6a69d0f9a89c8a5b35c5a1bf7e47b05188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Mon, 31 Aug 2020 17:59:54 +0800 Subject: [PATCH 01/12] =?UTF-8?q?refactor:=20=E9=87=8D=E6=9E=84=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E6=98=AF=E5=90=A6=E6=98=AF=20simulator=20=E7=8E=AF?= =?UTF-8?q?=E5=A2=83=E7=9A=84=E9=80=BB=E8=BE=91=20fix:=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81=20NodeChildren#find=20=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/designer/src/builtin-simulator/host.ts | 4 ++-- packages/designer/src/document/node/node-children.ts | 8 ++++++-- packages/editor-preset-vision/src/bundle/prototype.ts | 10 ++++++++-- packages/editor-preset-vision/src/editor.ts | 2 +- packages/utils/src/env.ts | 3 +++ packages/utils/src/index.ts | 1 + 6 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 packages/utils/src/env.ts diff --git a/packages/designer/src/builtin-simulator/host.ts b/packages/designer/src/builtin-simulator/host.ts index b8e168883..6b64c0a40 100644 --- a/packages/designer/src/builtin-simulator/host.ts +++ b/packages/designer/src/builtin-simulator/host.ts @@ -87,7 +87,7 @@ const defaultRaxSimulatorUrl = (() => { const defaultEnvironment = [ // https://g.alicdn.com/mylib/??react/16.11.0/umd/react.production.min.js,react-dom/16.8.6/umd/react-dom.production.min.js,prop-types/15.7.2/prop-types.min.js - assetItem(AssetType.JSText, 'window.React=parent.React;window.ReactDOM=parent.ReactDOM;', undefined, 'react'), + assetItem(AssetType.JSText, 'window.React=parent.React;window.ReactDOM=parent.ReactDOM;window.__is_simulator_env__=true;', undefined, 'react'), assetItem( AssetType.JSText, 'window.PropTypes=parent.PropTypes;React.PropTypes=parent.PropTypes; window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;', @@ -877,7 +877,7 @@ export class BuiltinSimulatorHost implements ISimulatorHost { return this.owner.document.createNode(child); }); + } interalInitParent() { @@ -63,7 +64,7 @@ export class NodeChildren { /** * @deprecated - * @param nodes + * @param nodes */ concat(nodes: Node[]) { return this.children.concat(nodes); @@ -235,7 +236,6 @@ export class NodeChildren { return fn(child, index); }); } - every(fn: (item: Node, index: number) => any): boolean { return this.children.every((child, index) => fn(child, index)); } @@ -248,6 +248,10 @@ export class NodeChildren { return this.children.filter(fn); } + find(fn: (item: Node, index: number) => Node) { + return this.children.find(fn); + } + mergeChildren(remover: () => any, adder: (children: Node[]) => NodeData[] | null, sorter: () => any) { let changed = false; if (remover) { diff --git a/packages/editor-preset-vision/src/bundle/prototype.ts b/packages/editor-preset-vision/src/bundle/prototype.ts index a031cb9db..c1de2e6f1 100644 --- a/packages/editor-preset-vision/src/bundle/prototype.ts +++ b/packages/editor-preset-vision/src/bundle/prototype.ts @@ -1,5 +1,5 @@ import { ComponentType, ReactElement, Component, FunctionComponent } from 'react'; -import { ComponentMetadata, FieldConfig, InitialItem, FilterItem, AutorunItem, isI18nData } from '@ali/lowcode-types'; +import { ComponentMetadata, FieldConfig, InitialItem, FilterItem, AutorunItem } from '@ali/lowcode-types'; import { ComponentMeta, addBuiltinComponentAction, @@ -7,6 +7,8 @@ import { registerMetadataTransducer, TransformStage, } from '@ali/lowcode-designer'; +import { intl } from '@ali/lowcode-editor-core'; +import { isInSimulator } from '@ali/lowcode-utils'; import { OldPropConfig, OldPrototypeConfig, @@ -15,7 +17,7 @@ import { upgradePropConfig, upgradeConfigure, } from './upgrade-metadata'; -import { intl } from '@ali/lowcode-editor-core'; + import { designer } from '../editor'; const GlobalPropsConfigure: Array<{ @@ -213,6 +215,10 @@ class Prototype { static removeGlobalPropsConfigure = removeGlobalPropsConfigure; static overridePropsConfigure = overridePropsConfigure; static create(config: OldPrototypeConfig | ComponentMetadata | ComponentMeta, extraConfigs: any = null, lookup: boolean = false) { + // 目前 vc-xxx 会在设计器和渲染 simulator iframe 中执行两遍,在 simulator 中不需要重新创建,直接复用外层的 + if (isInSimulator()) { + lookup = true; + } return new Prototype(config, extraConfigs, lookup); } diff --git a/packages/editor-preset-vision/src/editor.ts b/packages/editor-preset-vision/src/editor.ts index d9e8b767f..a45b2f30b 100644 --- a/packages/editor-preset-vision/src/editor.ts +++ b/packages/editor-preset-vision/src/editor.ts @@ -107,7 +107,7 @@ designer.addPropsReducer((props, node) => { } }); // 全局的关闭 uniqueIdChecker 信号,在 ve-utils 中实现 - if (fieldIds.indexOf(props.fieldId) >= 0 && !window.__disable_unique_id_checker__) { + if (fieldIds.indexOf(props.fieldId) >= 0 && !(window as any).__disable_unique_id_checker__) { newProps.fieldId = undefined; } } diff --git a/packages/utils/src/env.ts b/packages/utils/src/env.ts new file mode 100644 index 000000000..4770bd46f --- /dev/null +++ b/packages/utils/src/env.ts @@ -0,0 +1,3 @@ +export function isInSimulator() { + return Boolean((window as any).__is_simulator_env__); +} \ No newline at end of file diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 3df01d928..3863eeb6b 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -18,3 +18,4 @@ export * from './set-prototype-of'; export * from './shallow-equal'; export * from './svg-icon'; export * from './unique-id'; +export * from './env'; From 0461a57d577f86c77dbbe076779ab2598feed220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Wed, 2 Sep 2020 13:46:42 +0800 Subject: [PATCH 02/12] =?UTF-8?q?refactor:=20=E9=87=8D=E6=96=B0=E6=A2=B3?= =?UTF-8?q?=E7=90=86=20purge=20/=20remove=20/=20delete=20=E7=9A=84?= =?UTF-8?q?=E8=81=8C=E8=B4=A3=EF=BC=8C=E4=BB=A5=E5=8F=8A=E7=9B=B8=E5=BA=94?= =?UTF-8?q?=E9=87=8D=E6=9E=84=20refactor:=20=E8=B0=83=E6=95=B4=E5=88=A4?= =?UTF-8?q?=E6=96=AD=20fieldId=20=E6=98=AF=E5=90=A6=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E7=9A=84=E9=80=BB=E8=BE=91=20fix:=20=E8=A7=A3=E5=86=B3=20redo?= =?UTF-8?q?=20=E6=97=B6=E9=A1=B5=E9=9D=A2=E8=8A=82=E7=82=B9=E6=95=B0?= =?UTF-8?q?=E4=B8=8D=E5=AF=B9=E4=BB=A5=E5=8F=8A=20fieldId=20=E8=A2=AB?= =?UTF-8?q?=E9=87=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../designer/src/document/document-model.ts | 18 +++--- .../src/document/node/node-children.ts | 58 +++++++++++------- packages/designer/src/document/node/node.ts | 37 ++++------- .../designer/src/document/node/props/prop.ts | 61 ++++++++++--------- .../designer/src/document/node/props/props.ts | 4 +- packages/editor-preset-vision/src/editor.ts | 37 +++++------ 6 files changed, 107 insertions(+), 108 deletions(-) diff --git a/packages/designer/src/document/document-model.ts b/packages/designer/src/document/document-model.ts index 7a7666d63..58d17a67f 100644 --- a/packages/designer/src/document/document-model.ts +++ b/packages/designer/src/document/document-model.ts @@ -267,14 +267,16 @@ export class DocumentModel { /** * 内部方法,请勿调用 */ - internalRemoveAndPurgeNode(node: Node) { + internalRemoveAndPurgeNode(node: Node, useMutator = false) { if (!this.nodes.has(node)) { return; } - this._nodesMap.delete(node.id); + node.remove(useMutator); + } + + unlinkNode(node: Node) { this.nodes.delete(node); - this.selection.remove(node.id); - node.remove(); + this._nodesMap.delete(node.id); } @obx.ref private _dropLocation: DropLocation | null = null; @@ -318,20 +320,20 @@ export class DocumentModel { * 导出 schema 数据 */ get schema(): RootSchema { - return this.rootNode.schema as any; + return this.rootNode?.schema as any; } import(schema: RootSchema, checkId = false) { - // TODO: do purge this.nodes.forEach(node => { + this.internalRemoveAndPurgeNode(node, true); this.destroyNode(node); }); - this.rootNode.import(schema as any, checkId); + this.rootNode?.import(schema as any, checkId); // todo: select added and active track added } export(stage: TransformStage = TransformStage.Serilize) { - return this.rootNode.export(stage); + return this.rootNode?.export(stage); } /** diff --git a/packages/designer/src/document/node/node-children.ts b/packages/designer/src/document/node/node-children.ts index f89e55008..7fe20ef65 100644 --- a/packages/designer/src/document/node/node-children.ts +++ b/packages/designer/src/document/node/node-children.ts @@ -15,7 +15,7 @@ export class NodeChildren { }); } - interalInitParent() { + internalInitParent() { this.children.forEach(child => child.internalSetParent(this.owner)); } @@ -55,7 +55,7 @@ export class NodeChildren { } this.children = children; - this.interalInitParent(); + this.internalInitParent(); if (!shallowEqual(children, originChildren)) { this.emitter.emit('change'); } @@ -63,7 +63,7 @@ export class NodeChildren { /** * @deprecated - * @param nodes + * @param nodes */ concat(nodes: Node[]) { return this.children.concat(nodes); @@ -91,20 +91,46 @@ export class NodeChildren { return this.children.length; } + private purged = false; + /** + * 回收销毁 + */ + purge(useMutator = true) { + if (this.purged) { + return; + } + this.purged = true; + this.children.forEach((child) => { + child.purge(useMutator); + }); + } + /** * 删除一个节点 */ delete(node: Node, purge = false, useMutator = true): boolean { + if (node.isParental()) { + node.children.forEach(subNode => { + subNode.remove(useMutator, purge); + }); + } + if (purge) { + // should set parent null + node.internalSetParent(null, useMutator); + try { + node.purge(useMutator); + } catch(err) { + console.error(err); + } + } const i = this.children.indexOf(node); if (i < 0) { return false; } - const deleted = this.children.splice(i, 1)[0]; - if (purge) { - // should set parent null - deleted.internalSetParent(null, useMutator); - deleted.purge(useMutator); - } + this.children.splice(i, 1); + const document = node.document; + document.unlinkNode(node); + document.selection.remove(node.id); this.emitter.emit('change'); if (useMutator) { this.reportModified(node, this.owner, {type: 'remove', removeIndex: i, removeNode: node}); @@ -290,18 +316,6 @@ export class NodeChildren { }; } - private purged = false; - /** - * 回收销毁 - */ - purge(useMutator = true) { - if (this.purged) { - return; - } - this.purged = true; - this.children.forEach((child) => child.purge(useMutator)); - } - get [Symbol.toStringTag]() { // 保证向前兼容性 return 'Array'; @@ -327,7 +341,7 @@ export class NodeChildren { try { callbacks?.onSubtreeModified.call(node, owner, options); } catch (e) { - console.error('error when excute experimental.callbacks.onNodeAdd', e); + console.error('error when excute experimental.callbacks.onSubtreeModified', e); } } diff --git a/packages/designer/src/document/node/node.ts b/packages/designer/src/document/node/node.ts index c69f780d5..e480d6b6e 100644 --- a/packages/designer/src/document/node/node.ts +++ b/packages/designer/src/document/node/node.ts @@ -155,9 +155,12 @@ export class Node { children: isDOMText(children) || isJSExpression(children) ? children : '', }); } else { + // 这里 props 被初始化两次,一次 new,一次 import,new 的实例需要给 propsReducer 的钩子去使用, + // import 是为了使用钩子返回的值,并非完全幂等的操作,部分行为执行两次会有 bug, + // 所以在 props 里会对 new / import 做一些区别化的解析 this.props = new Props(this, props, extras); this._children = new NodeChildren(this as ParentalNode, this.initialChildren(children)); - this._children.interalInitParent(); + this._children.internalInitParent(); this.props.import(this.upgradeProps(this.initProps(props || {})), this.upgradeProps(extras || {})); this.setupAutoruns(); } @@ -258,14 +261,6 @@ export class Node { return; } - if (this._parent) { - if (this.isSlot()) { - this._parent.removeSlot(this, false); - } else { - this._parent.children.delete(this, false, useMutator); - } - } - this._parent = parent; if (parent) { this.document.removeWillPurge(this); @@ -298,12 +293,12 @@ export class Node { /** * 移除当前节点 */ - remove(useMutator = true) { + remove(useMutator = true, purge = true) { if (this.parent) { if (this.isSlot()) { - this.parent.removeSlot(this, true); + this.parent.removeSlot(this, purge); } else { - this.parent.children.delete(this, true, useMutator); + this.parent.children.delete(this, purge, useMutator); } } } @@ -653,12 +648,14 @@ export class Node { if (i < 0) { return false; } - const deleted = this._slots.splice(i, 1)[0]; if (purge) { // should set parent null - deleted.internalSetParent(null); - deleted.purge(); + slotNode.internalSetParent(null, false); + slotNode.purge(); } + this.document.unlinkNode(slotNode); + this.document.selection.remove(slotNode.id); + this._slots.splice(i, 1); return false; } @@ -699,20 +696,10 @@ export class Node { if (this.purged) { return; } - // if (this._parent) { - // // should remove thisNode before purge - // this.remove(useMutator); - // return; - // } this.purged = true; - if (this.isParental()) { - this.children.purge(useMutator); - } this.autoruns?.forEach((dispose) => dispose()); this.props.purge(); - this.document.internalRemoveAndPurgeNode(this); this.document.destroyNode(this); - this.remove(useMutator); } /** diff --git a/packages/designer/src/document/node/props/prop.ts b/packages/designer/src/document/node/props/prop.ts index b27b6e60b..5acfcc757 100644 --- a/packages/designer/src/document/node/props/prop.ts +++ b/packages/designer/src/document/node/props/prop.ts @@ -22,6 +22,37 @@ export class Prop implements IPropParent { readonly isProp = true; readonly owner: Node; + private stash: PropStash | undefined; + + /** + * 键值 + */ + @obx key: string | number | undefined; + /** + * 扩展值 + */ + @obx spread: boolean; + + readonly props: Props; + readonly options: any; + + constructor( + public parent: IPropParent, + value: CompositeValue | UNSET = UNSET, + key?: string | number, + spread = false, + options = {}, + ) { + this.owner = parent.owner; + this.props = parent.props; + this.key = key; + this.spread = spread; + this.options = options; + if (value !== UNSET) { + this.setValue(value); + } + } + /** * @see SettingTarget */ @@ -197,7 +228,7 @@ export class Prop implements IPropParent { } else if (Array.isArray(val)) { this._type = 'list'; } else if (isPlainObject(val)) { - if (isJSSlot(val)) { + if (isJSSlot(val) && this.options.propsMode !== 'init') { this.setAsSlot(val); return; } @@ -347,34 +378,6 @@ export class Prop implements IPropParent { return this._maps; } - private stash: PropStash | undefined; - - /** - * 键值 - */ - @obx key: string | number | undefined; - /** - * 扩展值 - */ - @obx spread: boolean; - - readonly props: Props; - - constructor( - public parent: IPropParent, - value: CompositeValue | UNSET = UNSET, - key?: string | number, - spread = false, - ) { - this.owner = parent.owner; - this.props = parent.props; - if (value !== UNSET) { - this.setValue(value); - } - this.key = key; - this.spread = spread; - } - /** * 获取某个属性 * @param stash 如果不存在,临时获取一个待写入 diff --git a/packages/designer/src/document/node/props/props.ts b/packages/designer/src/document/node/props/props.ts index 02852816f..e9c73ccd3 100644 --- a/packages/designer/src/document/node/props/props.ts +++ b/packages/designer/src/document/node/props/props.ts @@ -57,9 +57,9 @@ export class Props implements IPropParent { constructor(readonly owner: Node, value?: PropsMap | PropsList | null, extras?: object) { if (Array.isArray(value)) { this.type = 'list'; - this.items = value.map(item => new Prop(this, item.value, item.name, item.spread)); + this.items = value.map(item => new Prop(this, item.value, item.name, item.spread, { propsMode: 'init' })); } else if (value != null) { - this.items = Object.keys(value).map(key => new Prop(this, value[key], key)); + this.items = Object.keys(value).map(key => new Prop(this, value[key], key, false, { propsMode: 'init' })); } if (extras) { Object.keys(extras).forEach(key => { diff --git a/packages/editor-preset-vision/src/editor.ts b/packages/editor-preset-vision/src/editor.ts index d9e8b767f..86188d288 100644 --- a/packages/editor-preset-vision/src/editor.ts +++ b/packages/editor-preset-vision/src/editor.ts @@ -26,21 +26,10 @@ export const designer = new Designer({ editor: editor }); editor.set(Designer, designer); editor.set('designer', designer); -let nodeCache: any = {}; designer.project.onCurrentDocumentChange((doc) => { - nodeCache = {}; - doc.nodesMap.forEach((node) => { - nodeCache[node.id] = node; - }); doc.onRendererReady(() => { bus.emit(VE_EVENTS.VE_PAGE_PAGE_READY); }); - doc.onNodeCreate((node) => { - nodeCache[node.id] = node; - }); - doc.onNodeDestroy((node) => { - delete nodeCache[node.id]; - }); }); interface Variable { @@ -89,6 +78,18 @@ function upgradePropsReducer(props: any) { // 升级 Props designer.addPropsReducer(upgradePropsReducer, TransformStage.Upgrade); +function getCurrentFieldIds() { + const fieldIds: any = []; + const nodesMap = designer?.currentDocument?.nodesMap || new Map(); + nodesMap.forEach((curNode: any) => { + const fieldId = nodesMap?.get(curNode.id)?.getPropValue('fieldId'); + if (fieldId) { + fieldIds.push(fieldId); + } + }); + return fieldIds; +} + // 节点 props 初始化 designer.addPropsReducer((props, node) => { // run initials @@ -96,18 +97,10 @@ designer.addPropsReducer((props, node) => { ...props, }; if (newProps.fieldId) { - const fieldIds: any = []; - Object.keys(nodeCache).forEach(nodeId => { - if (nodeId === node.id) { - return; - } - const fieldId = nodeCache[nodeId].getPropValue('fieldId'); - if (fieldId) { - fieldIds.push(fieldId); - } - }); + const fieldIds = getCurrentFieldIds(); + // 全局的关闭 uniqueIdChecker 信号,在 ve-utils 中实现 - if (fieldIds.indexOf(props.fieldId) >= 0 && !window.__disable_unique_id_checker__) { + if (fieldIds.indexOf(props.fieldId) >= 0 && !(window as any).__disable_unique_id_checker__) { newProps.fieldId = undefined; } } From 7b8cfa594b4d0b468144cfb142923ac8874adb40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Thu, 3 Sep 2020 17:42:32 +0800 Subject: [PATCH 03/12] =?UTF-8?q?chore:=20=E6=97=A0=E7=94=A8=E4=BF=AE?= =?UTF-8?q?=E6=94=B9,=20=E4=B8=BA=E4=BA=86=E8=AE=A9=E9=87=8D=E6=96=B0?= =?UTF-8?q?=E7=94=9F=E6=88=90=20npm=20=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/types/src/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/schema.ts b/packages/types/src/schema.ts index 0356e6c2b..b645c3e7d 100644 --- a/packages/types/src/schema.ts +++ b/packages/types/src/schema.ts @@ -92,4 +92,4 @@ export function isNodeSchema(data: any): data is NodeSchema { export function isProjectSchema(data: any): data is ProjectSchema { return data && data.componentsTree; -} +} \ No newline at end of file From f0a9c43b7a3ce840246eb9e0db475206dfa23271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Thu, 3 Sep 2020 18:21:26 +0800 Subject: [PATCH 04/12] Publish - @ali/lowcode-demo@0.8.63 - @ali/lowcode-designer@0.9.53 - @ali/lowcode-editor-core@0.8.35 - @ali/lowcode-editor-preset-general@0.9.38 - @ali/lowcode-editor-preset-vision@0.8.55 - @ali/lowcode-editor-setters@0.9.20 - @ali/lowcode-editor-skeleton@0.8.59 - @ali/lowcode-plugin-components-pane@0.8.55 - @ali/lowcode-plugin-designer@0.9.53 - @ali/lowcode-plugin-event-bind-dialog@0.8.33 - @ali/lowcode-plugin-outline-pane@0.8.59 - @ali/lowcode-plugin-sample-logo@0.8.32 - @ali/lowcode-plugin-sample-preview@0.8.57 - @ali/lowcode-plugin-source-editor@0.8.30 - @ali/lowcode-plugin-undo-redo@0.8.57 - @ali/lowcode-plugin-variable-bind-dialog@0.8.31 - @ali/lowcode-plugin-zh-en@0.8.35 - @ali/lowcode-rax-simulator-renderer@0.8.58 - @ali/lowcode-react-simulator-renderer@0.8.59 - @ali/lowcode-types@0.8.18 - @ali/lowcode-utils@0.8.21 --- packages/demo/CHANGELOG.md | 8 ++++++ packages/demo/package.json | 26 +++++++++---------- 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 | 12 ++++----- 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/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 | 6 ++--- 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-simulator-renderer/CHANGELOG.md | 8 ++++++ packages/rax-simulator-renderer/package.json | 10 +++---- .../react-simulator-renderer/CHANGELOG.md | 8 ++++++ .../react-simulator-renderer/package.json | 8 +++--- packages/types/CHANGELOG.md | 8 ++++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 ++++++ packages/utils/package.json | 4 +-- 42 files changed, 255 insertions(+), 87 deletions(-) diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index b534ec72d..00f718695 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.63](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.62...@ali/lowcode-demo@0.8.63) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.8.62](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.61...@ali/lowcode-demo@0.8.62) (2020-08-27) diff --git a/packages/demo/package.json b/packages/demo/package.json index 06795238c..086475673 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.8.62", + "version": "0.8.63", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-editor-skeleton": "^0.8.58", - "@ali/lowcode-plugin-components-pane": "^0.8.54", - "@ali/lowcode-plugin-designer": "^0.9.52", - "@ali/lowcode-plugin-event-bind-dialog": "^0.8.32", - "@ali/lowcode-plugin-outline-pane": "^0.8.58", - "@ali/lowcode-plugin-sample-logo": "^0.8.31", - "@ali/lowcode-plugin-sample-preview": "^0.8.56", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-skeleton": "^0.8.59", + "@ali/lowcode-plugin-components-pane": "^0.8.55", + "@ali/lowcode-plugin-designer": "^0.9.53", + "@ali/lowcode-plugin-event-bind-dialog": "^0.8.33", + "@ali/lowcode-plugin-outline-pane": "^0.8.59", + "@ali/lowcode-plugin-sample-logo": "^0.8.32", + "@ali/lowcode-plugin-sample-preview": "^0.8.57", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.8.56", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.30", - "@ali/lowcode-plugin-zh-en": "^0.8.34", + "@ali/lowcode-plugin-undo-redo": "^0.8.57", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.31", + "@ali/lowcode-plugin-zh-en": "^0.8.35", "@ali/lowcode-react-renderer": "^0.8.20", "@ali/lowcode-runtime": "^0.8.16", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-utils": "^0.8.21", "@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 61df96066..90c1a418b 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.9.53](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.52...@ali/lowcode-designer@0.9.53) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.9.52](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.51...@ali/lowcode-designer@0.9.52) (2020-08-27) diff --git a/packages/designer/package.json b/packages/designer/package.json index d98979e07..a96481f4a 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.9.52", + "version": "0.9.53", "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.8.34", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "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 a4261ad65..9b8baae44 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.35](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.34...@ali/lowcode-editor-core@0.8.35) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.8.34](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.33...@ali/lowcode-editor-core@0.8.34) (2020-08-27) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index e2a7abe0f..41cd00b86 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.34", + "version": "0.8.35", "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.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@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 445e762c8..f0b4e178d 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.9.38](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.37...@ali/lowcode-editor-preset-general@0.9.38) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.9.37](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.36...@ali/lowcode-editor-preset-general@0.9.37) (2020-08-27) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 03aee32c1..76b64c726 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.9.37", + "version": "0.9.38", "private": true, "description": "Ali General Editor Preset", "main": "lib/index.js", @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-editor-skeleton": "^0.8.58", - "@ali/lowcode-plugin-designer": "^0.9.52", - "@ali/lowcode-plugin-outline-pane": "^0.8.58", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-skeleton": "^0.8.59", + "@ali/lowcode-plugin-designer": "^0.9.53", + "@ali/lowcode-plugin-outline-pane": "^0.8.59", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -28,7 +28,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.9.19", + "@ali/lowcode-editor-setters": "^0.9.20", "@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 4ee8ad52f..c79f8d062 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.8.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.54...@ali/lowcode-editor-preset-vision@0.8.55) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [0.8.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.53...@ali/lowcode-editor-preset-vision@0.8.54) (2020-08-27) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 612d8741f..04a529259 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.8.54", + "version": "0.8.55", "private": true, "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", @@ -15,11 +15,11 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-editor-skeleton": "^0.8.58", - "@ali/lowcode-plugin-designer": "^0.9.52", - "@ali/lowcode-plugin-outline-pane": "^0.8.58", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-skeleton": "^0.8.59", + "@ali/lowcode-plugin-designer": "^0.9.53", + "@ali/lowcode-plugin-outline-pane": "^0.8.59", "@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 fdd5364bf..4c91ba7b6 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.9.20](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.19...@ali/lowcode-editor-setters@0.9.20) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.9.19](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.18...@ali/lowcode-editor-setters@0.9.19) (2020-08-27) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 2142c7e3d..ca27d8104 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.9.19", + "version": "0.9.20", "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.8.34", + "@ali/lowcode-editor-core": "^0.8.35", "@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 92087147b..b464f66f4 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.58...@ali/lowcode-editor-skeleton@0.8.59) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.57...@ali/lowcode-editor-skeleton@0.8.58) (2020-08-27) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index ff52b1dd2..b3f43dd08 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.58", + "version": "0.8.59", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@alifd/next": "^1.20.12", "classnames": "^2.2.6", "react": "^16.8.1", diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index 88e735c4a..00dddb9e2 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.54...@ali/lowcode-plugin-components-pane@0.8.55) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.8.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.53...@ali/lowcode-plugin-components-pane@0.8.54) (2020-08-27) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 07bb74de1..f90ef8f73 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.54", + "version": "0.8.55", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-types": "^0.8.17", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", "@ali/ve-component-list": "^1.1.1", "@alifd/next": "^1.19.19", "react": "^16.8.1" diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 95ad10804..983f98762 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.9.53](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.52...@ali/lowcode-plugin-designer@0.9.53) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.9.52](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.51...@ali/lowcode-plugin-designer@0.9.52) (2020-08-27) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index e51ec2069..ece976136 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.9.52", + "version": "0.9.53", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", "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 211352669..c74758401 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.32...@ali/lowcode-plugin-event-bind-dialog@0.8.33) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.31...@ali/lowcode-plugin-event-bind-dialog@0.8.32) (2020-08-27) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 67fba8e3b..f6f6e3f97 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "0.8.32", + "version": "0.8.33", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-types": "^0.8.17", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", "@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 eb6dbe529..e1c201041 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.58...@ali/lowcode-plugin-outline-pane@0.8.59) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.57...@ali/lowcode-plugin-outline-pane@0.8.58) (2020-08-27) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 7a8d68f2e..4da55455d 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.58", + "version": "0.8.59", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@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 01f05bb47..281afbb1d 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.31...@ali/lowcode-plugin-sample-logo@0.8.32) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.8.31](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.30...@ali/lowcode-plugin-sample-logo@0.8.31) (2020-08-27) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index a8b60f859..ad1f70231 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "0.8.31", + "version": "0.8.32", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", + "@ali/lowcode-editor-core": "^0.8.35", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 2782f9dbf..c5b78c961 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.56...@ali/lowcode-plugin-sample-preview@0.8.57) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.55...@ali/lowcode-plugin-sample-preview@0.8.56) (2020-08-27) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 6100f0ef9..5bca65c3c 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.56", + "version": "0.8.57", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,8 +18,8 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", "@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 9198ca6ee..ecd30e80d 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.8.30](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@0.8.29...@ali/lowcode-plugin-source-editor@0.8.30) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.8.29](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@0.8.28...@ali/lowcode-plugin-source-editor@0.8.29) (2020-08-27) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index 8b3ea0245..f2cdb46ce 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.8.29", + "version": "0.8.30", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", + "@ali/lowcode-editor-core": "^0.8.35", "@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 e573cdb7d..770cf0788 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.56...@ali/lowcode-plugin-undo-redo@0.8.57) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.55...@ali/lowcode-plugin-undo-redo@0.8.56) (2020-08-27) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 0a823d13b..bbe282753 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.56", + "version": "0.8.57", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.52", - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-editor-skeleton": "^0.8.58", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-skeleton": "^0.8.59", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "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 15244949b..dba0db8b9 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.8.31](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.30...@ali/lowcode-plugin-variable-bind-dialog@0.8.31) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.8.30](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.29...@ali/lowcode-plugin-variable-bind-dialog@0.8.30) (2020-08-27) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 4886abefe..2290b0d07 100644 --- a/packages/plugin-variable-bind-dialog/package.json +++ b/packages/plugin-variable-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-variable-bind-dialog", - "version": "0.8.30", + "version": "0.8.31", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", + "@ali/lowcode-editor-core": "^0.8.35", "@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 ac642350e..025e0177e 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.35](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.34...@ali/lowcode-plugin-zh-en@0.8.35) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.8.34](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.33...@ali/lowcode-plugin-zh-en@0.8.34) (2020-08-27) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 41b44b936..9e5ba609c 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.34", + "version": "0.8.35", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.34", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 0e684140f..d2a057ada 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.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.57...@ali/lowcode-rax-simulator-renderer@0.8.58) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.56...@ali/lowcode-rax-simulator-renderer@0.8.57) (2020-08-27) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 58b120f08..36a450b44 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.8.57", + "version": "0.8.58", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.52", + "@ali/lowcode-designer": "^0.9.53", "@ali/lowcode-rax-renderer": "^0.1.7", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", @@ -53,5 +53,5 @@ "ts-node/register" ] }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.8.56/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.8.57/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index fc110647b..5326249a8 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.58...@ali/lowcode-react-simulator-renderer@0.8.59) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.57...@ali/lowcode-react-simulator-renderer@0.8.58) (2020-08-27) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index d7599d23b..ffb87623a 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.58", + "version": "0.8.59", "description": "react 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.9.52", + "@ali/lowcode-designer": "^0.9.53", "@ali/lowcode-react-renderer": "^0.8.20", - "@ali/lowcode-types": "^0.8.17", - "@ali/lowcode-utils": "^0.8.20", + "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-utils": "^0.8.21", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index bffc1f4c9..8ac5b604e 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.8.18](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@0.8.17...@ali/lowcode-types@0.8.18) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.8.17](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@0.8.16...@ali/lowcode-types@0.8.17) (2020-08-24) diff --git a/packages/types/package.json b/packages/types/package.json index e46bce691..19d096520 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.8.17", + "version": "0.8.18", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 355f8d63d..b7e097107 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.8.21](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@0.8.20...@ali/lowcode-utils@0.8.21) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.8.20](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@0.8.19...@ali/lowcode-utils@0.8.20) (2020-08-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 57d27562a..5fea35870 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.8.20", + "version": "0.8.21", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.8.17", + "@ali/lowcode-types": "^0.8.18", "@alifd/next": "^1.19.16", "react": "^16" }, From 4ce7e00ba52352b70699efe372e1c739edcfd6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Thu, 3 Sep 2020 18:26:56 +0800 Subject: [PATCH 05/12] Publish - @ali/lowcode-demo@0.8.64 - @ali/lowcode-designer@0.9.54 - @ali/lowcode-editor-core@0.8.36 - @ali/lowcode-editor-preset-general@0.9.39 - @ali/lowcode-editor-preset-vision@0.8.56 - @ali/lowcode-editor-setters@0.9.21 - @ali/lowcode-editor-skeleton@0.8.60 - @ali/lowcode-plugin-components-pane@0.8.56 - @ali/lowcode-plugin-designer@0.9.54 - @ali/lowcode-plugin-event-bind-dialog@0.8.34 - @ali/lowcode-plugin-outline-pane@0.8.60 - @ali/lowcode-plugin-sample-logo@0.8.33 - @ali/lowcode-plugin-sample-preview@0.8.58 - @ali/lowcode-plugin-source-editor@0.8.31 - @ali/lowcode-plugin-undo-redo@0.8.58 - @ali/lowcode-plugin-variable-bind-dialog@0.8.32 - @ali/lowcode-plugin-zh-en@0.8.36 - @ali/lowcode-rax-simulator-renderer@0.8.59 - @ali/lowcode-react-simulator-renderer@0.8.60 - @ali/lowcode-types@0.8.19 - @ali/lowcode-utils@0.8.22 --- packages/demo/CHANGELOG.md | 8 ++++++ packages/demo/package.json | 26 +++++++++---------- 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 | 12 ++++----- 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/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 | 6 ++--- 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-simulator-renderer/CHANGELOG.md | 8 ++++++ packages/rax-simulator-renderer/package.json | 8 +++--- .../react-simulator-renderer/CHANGELOG.md | 8 ++++++ .../react-simulator-renderer/package.json | 8 +++--- packages/types/CHANGELOG.md | 8 ++++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 ++++++ packages/utils/package.json | 4 +-- 42 files changed, 257 insertions(+), 86 deletions(-) diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 00f718695..5023eafba 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.64](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.63...@ali/lowcode-demo@0.8.64) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.8.63](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.62...@ali/lowcode-demo@0.8.63) (2020-09-03) diff --git a/packages/demo/package.json b/packages/demo/package.json index 086475673..1fb3b5856 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.8.63", + "version": "0.8.64", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-editor-skeleton": "^0.8.59", - "@ali/lowcode-plugin-components-pane": "^0.8.55", - "@ali/lowcode-plugin-designer": "^0.9.53", - "@ali/lowcode-plugin-event-bind-dialog": "^0.8.33", - "@ali/lowcode-plugin-outline-pane": "^0.8.59", - "@ali/lowcode-plugin-sample-logo": "^0.8.32", - "@ali/lowcode-plugin-sample-preview": "^0.8.57", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-editor-skeleton": "^0.8.60", + "@ali/lowcode-plugin-components-pane": "^0.8.56", + "@ali/lowcode-plugin-designer": "^0.9.54", + "@ali/lowcode-plugin-event-bind-dialog": "^0.8.34", + "@ali/lowcode-plugin-outline-pane": "^0.8.60", + "@ali/lowcode-plugin-sample-logo": "^0.8.33", + "@ali/lowcode-plugin-sample-preview": "^0.8.58", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.8.57", - "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.31", - "@ali/lowcode-plugin-zh-en": "^0.8.35", + "@ali/lowcode-plugin-undo-redo": "^0.8.58", + "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.32", + "@ali/lowcode-plugin-zh-en": "^0.8.36", "@ali/lowcode-react-renderer": "^0.8.20", "@ali/lowcode-runtime": "^0.8.16", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-utils": "^0.8.22", "@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 90c1a418b..3d8370cbe 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.9.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.53...@ali/lowcode-designer@0.9.54) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [0.9.53](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.52...@ali/lowcode-designer@0.9.53) (2020-09-03) diff --git a/packages/designer/package.json b/packages/designer/package.json index a96481f4a..3a7c6930e 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.9.53", + "version": "0.9.54", "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.8.35", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "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 9b8baae44..0d8955b03 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.36](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.35...@ali/lowcode-editor-core@0.8.36) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [0.8.35](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.34...@ali/lowcode-editor-core@0.8.35) (2020-09-03) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 41cd00b86..c1f90f9f7 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "0.8.35", + "version": "0.8.36", "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.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@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 f0b4e178d..ee32c12d5 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.9.39](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.38...@ali/lowcode-editor-preset-general@0.9.39) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.9.38](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.37...@ali/lowcode-editor-preset-general@0.9.38) (2020-09-03) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 76b64c726..5be4fea92 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.9.38", + "version": "0.9.39", "private": true, "description": "Ali General Editor Preset", "main": "lib/index.js", @@ -15,12 +15,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-editor-skeleton": "^0.8.59", - "@ali/lowcode-plugin-designer": "^0.9.53", - "@ali/lowcode-plugin-outline-pane": "^0.8.59", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-editor-skeleton": "^0.8.60", + "@ali/lowcode-plugin-designer": "^0.9.54", + "@ali/lowcode-plugin-outline-pane": "^0.8.60", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -28,7 +28,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^0.9.20", + "@ali/lowcode-editor-setters": "^0.9.21", "@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 c79f8d062..447f0808a 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.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.55...@ali/lowcode-editor-preset-vision@0.8.56) (2020-09-03) + + +### Bug Fixes + +* 用户在动态修改 prototype 时也需要重新计算 meta ([66c21c0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/66c21c0)) + + + + ## [0.8.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.54...@ali/lowcode-editor-preset-vision@0.8.55) (2020-09-03) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 04a529259..89eba5d33 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.8.55", + "version": "0.8.56", "private": true, "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", @@ -15,11 +15,11 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-editor-skeleton": "^0.8.59", - "@ali/lowcode-plugin-designer": "^0.9.53", - "@ali/lowcode-plugin-outline-pane": "^0.8.59", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-editor-skeleton": "^0.8.60", + "@ali/lowcode-plugin-designer": "^0.9.54", + "@ali/lowcode-plugin-outline-pane": "^0.8.60", "@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 4c91ba7b6..8f5221ad7 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.9.21](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.20...@ali/lowcode-editor-setters@0.9.21) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [0.9.20](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.19...@ali/lowcode-editor-setters@0.9.20) (2020-09-03) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index ca27d8104..113f08e1a 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "0.9.20", + "version": "0.9.21", "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.8.35", + "@ali/lowcode-editor-core": "^0.8.36", "@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 b464f66f4..1b5aa7ebe 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.59...@ali/lowcode-editor-skeleton@0.8.60) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.58...@ali/lowcode-editor-skeleton@0.8.59) (2020-09-03) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index b3f43dd08..e98006b58 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.59", + "version": "0.8.60", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@alifd/next": "^1.20.12", "classnames": "^2.2.6", "react": "^16.8.1", diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index 00dddb9e2..8537b6439 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.55...@ali/lowcode-plugin-components-pane@0.8.56) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.8.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.54...@ali/lowcode-plugin-components-pane@0.8.55) (2020-09-03) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index f90ef8f73..85aa62410 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.55", + "version": "0.8.56", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,9 +20,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", "@ali/ve-component-list": "^1.1.1", "@alifd/next": "^1.19.19", "react": "^16.8.1" diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 983f98762..00bfdade5 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.9.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.53...@ali/lowcode-plugin-designer@0.9.54) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.9.53](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.52...@ali/lowcode-plugin-designer@0.9.53) (2020-09-03) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index ece976136..f541c18bd 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.9.53", + "version": "0.9.54", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", "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 c74758401..a8d072188 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.34](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.33...@ali/lowcode-plugin-event-bind-dialog@0.8.34) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [0.8.33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.32...@ali/lowcode-plugin-event-bind-dialog@0.8.33) (2020-09-03) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index f6f6e3f97..964690058 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "0.8.33", + "version": "0.8.34", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", "@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 e1c201041..98001e659 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.59...@ali/lowcode-plugin-outline-pane@0.8.60) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.58...@ali/lowcode-plugin-outline-pane@0.8.59) (2020-09-03) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 4da55455d..5eb6b755e 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.59", + "version": "0.8.60", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@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 281afbb1d..3bbe935b7 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.32...@ali/lowcode-plugin-sample-logo@0.8.33) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [0.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.31...@ali/lowcode-plugin-sample-logo@0.8.32) (2020-09-03) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index ad1f70231..5a143dd55 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "0.8.32", + "version": "0.8.33", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-core": "^0.8.36", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index c5b78c961..56e1bcbe1 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.57...@ali/lowcode-plugin-sample-preview@0.8.58) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.56...@ali/lowcode-plugin-sample-preview@0.8.57) (2020-09-03) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 5bca65c3c..05617a9ec 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.57", + "version": "0.8.58", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,8 +18,8 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", "@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 ecd30e80d..af4aa7d17 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.8.31](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@0.8.30...@ali/lowcode-plugin-source-editor@0.8.31) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [0.8.30](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@0.8.29...@ali/lowcode-plugin-source-editor@0.8.30) (2020-09-03) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index f2cdb46ce..be613ffc7 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.8.30", + "version": "0.8.31", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-core": "^0.8.36", "@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 770cf0788..9e6b5c98c 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.57...@ali/lowcode-plugin-undo-redo@0.8.58) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.56...@ali/lowcode-plugin-undo-redo@0.8.57) (2020-09-03) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index bbe282753..b7b5b8d39 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.57", + "version": "0.8.58", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.53", - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-editor-skeleton": "^0.8.59", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-editor-skeleton": "^0.8.60", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "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 dba0db8b9..95b42ec47 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.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.31...@ali/lowcode-plugin-variable-bind-dialog@0.8.32) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [0.8.31](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.30...@ali/lowcode-plugin-variable-bind-dialog@0.8.31) (2020-09-03) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 2290b0d07..4dc355826 100644 --- a/packages/plugin-variable-bind-dialog/package.json +++ b/packages/plugin-variable-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-variable-bind-dialog", - "version": "0.8.31", + "version": "0.8.32", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", + "@ali/lowcode-editor-core": "^0.8.36", "@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 025e0177e..54702d4b7 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.36](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.35...@ali/lowcode-plugin-zh-en@0.8.36) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [0.8.35](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.34...@ali/lowcode-plugin-zh-en@0.8.35) (2020-09-03) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 9e5ba609c..3fbf2f960 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "0.8.35", + "version": "0.8.36", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^0.8.35", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-editor-core": "^0.8.36", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index d2a057ada..57fd05626 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.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.58...@ali/lowcode-rax-simulator-renderer@0.8.59) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.57...@ali/lowcode-rax-simulator-renderer@0.8.58) (2020-09-03) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 36a450b44..1e62b3b36 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.8.58", + "version": "0.8.59", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.53", + "@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-rax-renderer": "^0.1.7", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 5326249a8..8aa7e8302 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.59...@ali/lowcode-react-simulator-renderer@0.8.60) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.58...@ali/lowcode-react-simulator-renderer@0.8.59) (2020-09-03) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index ffb87623a..5137ba0fd 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.59", + "version": "0.8.60", "description": "react 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.9.53", + "@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-react-renderer": "^0.8.20", - "@ali/lowcode-types": "^0.8.18", - "@ali/lowcode-utils": "^0.8.21", + "@ali/lowcode-types": "^0.8.19", + "@ali/lowcode-utils": "^0.8.22", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 8ac5b604e..ad5e4f849 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.8.19](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@0.8.18...@ali/lowcode-types@0.8.19) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [0.8.18](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@0.8.17...@ali/lowcode-types@0.8.18) (2020-09-03) diff --git a/packages/types/package.json b/packages/types/package.json index 19d096520..73fa504df 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "0.8.18", + "version": "0.8.19", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b7e097107..499383b9e 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.8.22](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@0.8.21...@ali/lowcode-utils@0.8.22) (2020-09-03) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [0.8.21](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@0.8.20...@ali/lowcode-utils@0.8.21) (2020-09-03) diff --git a/packages/utils/package.json b/packages/utils/package.json index 5fea35870..acbaaa9a9 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "0.8.21", + "version": "0.8.22", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^0.8.18", + "@ali/lowcode-types": "^0.8.19", "@alifd/next": "^1.19.16", "react": "^16" }, From 6370889c766669c03c84d9eb242fb86926e84f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Thu, 3 Sep 2020 18:40:26 +0800 Subject: [PATCH 06/12] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=20isInSimulator?= =?UTF-8?q?=20=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-preset-vision/src/bundle/prototype.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/editor-preset-vision/src/bundle/prototype.ts b/packages/editor-preset-vision/src/bundle/prototype.ts index c1de2e6f1..d842563b1 100644 --- a/packages/editor-preset-vision/src/bundle/prototype.ts +++ b/packages/editor-preset-vision/src/bundle/prototype.ts @@ -8,7 +8,6 @@ import { TransformStage, } from '@ali/lowcode-designer'; import { intl } from '@ali/lowcode-editor-core'; -import { isInSimulator } from '@ali/lowcode-utils'; import { OldPropConfig, OldPrototypeConfig, @@ -215,10 +214,6 @@ class Prototype { static removeGlobalPropsConfigure = removeGlobalPropsConfigure; static overridePropsConfigure = overridePropsConfigure; static create(config: OldPrototypeConfig | ComponentMetadata | ComponentMeta, extraConfigs: any = null, lookup: boolean = false) { - // 目前 vc-xxx 会在设计器和渲染 simulator iframe 中执行两遍,在 simulator 中不需要重新创建,直接复用外层的 - if (isInSimulator()) { - lookup = true; - } return new Prototype(config, extraConfigs, lookup); } From 88e500813986f3b84ba8dc6fdf02d6357aaac51b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Thu, 3 Sep 2020 19:54:29 +0800 Subject: [PATCH 07/12] =?UTF-8?q?fix:=20=E8=A1=A5=E5=85=A8=20packageName,?= =?UTF-8?q?=20=E5=90=A6=E5=88=99=E5=9C=A8=E7=BB=84=E4=BB=B6=E9=9D=A2?= =?UTF-8?q?=E6=9D=BF=E4=BC=9A=E8=A2=AB=E9=9A=90=E8=97=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-preset-vision/src/bundle/bundle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-preset-vision/src/bundle/bundle.ts b/packages/editor-preset-vision/src/bundle/bundle.ts index 0c49bc098..4e2cc3f6e 100644 --- a/packages/editor-preset-vision/src/bundle/bundle.ts +++ b/packages/editor-preset-vision/src/bundle/bundle.ts @@ -126,7 +126,7 @@ export default class Bundle { */ if (bundles.length >= 2) { const prototype = bundles[0]; - const metadata = upgradeMetadata(prototype.options); + const metadata = upgradeMetadata({ ...prototype.options, packageName: prototype.packageName }); prototype.meta = designer.createComponentMeta(metadata); const prototypeView = bundles[1]; prototype.setView(prototypeView); From 7a6bf2cdb4a2d7dccae36874c72012835fce4d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Mon, 7 Sep 2020 14:19:09 +0800 Subject: [PATCH 08/12] =?UTF-8?q?fix:=20=E6=8B=96=E6=8B=BD=E6=97=B6?= =?UTF-8?q?=E8=A6=81=E8=A7=A3=E9=99=A4=E4=B8=8E=E5=8E=9F=E6=9D=A5=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E7=9A=84=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../designer/src/document/node/node-children.ts | 7 +++++++ packages/designer/src/document/node/node.ts | 17 +++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/packages/designer/src/document/node/node-children.ts b/packages/designer/src/document/node/node-children.ts index 3e0f8814a..527b72c61 100644 --- a/packages/designer/src/document/node/node-children.ts +++ b/packages/designer/src/document/node/node-children.ts @@ -106,6 +106,13 @@ export class NodeChildren { }); } + unlinkChild(node: Node) { + const i = this.children.indexOf(node); + if (i < 0) { + return false; + } + this.children.splice(i, 1); + } /** * 删除一个节点 */ diff --git a/packages/designer/src/document/node/node.ts b/packages/designer/src/document/node/node.ts index e480d6b6e..5b11fc097 100644 --- a/packages/designer/src/document/node/node.ts +++ b/packages/designer/src/document/node/node.ts @@ -261,6 +261,15 @@ export class Node { return; } + // 解除老的父子关系,但不需要真的删除节点 + if (this._parent) { + if (this.isSlot()) { + this._parent.unlinkSlot(this); + } else { + this._parent.children.unlinkChild(this); + } + } + // 建立新的父子关系 this._parent = parent; if (parent) { this.document.removeWillPurge(this); @@ -640,6 +649,14 @@ export class Node { return comparePosition(this, otherNode); } + unlinkSlot(slotNode: Node) { + const i = this._slots.indexOf(slotNode); + if (i < 0) { + return false; + } + this._slots.splice(i, 1); + } + /** * 删除一个Slot节点 */ From e62aa94d9e01d5974b0333274a29b79ff719f701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Tue, 8 Sep 2020 11:25:30 +0800 Subject: [PATCH 09/12] Publish - @ali/lowcode-demo@0.8.65 - @ali/lowcode-designer@0.9.55 - @ali/lowcode-editor-preset-general@0.9.40 - @ali/lowcode-editor-preset-vision@0.8.57 - @ali/lowcode-editor-skeleton@0.8.61 - @ali/lowcode-plugin-components-pane@0.8.57 - @ali/lowcode-plugin-designer@0.9.55 - @ali/lowcode-plugin-outline-pane@0.8.61 - @ali/lowcode-plugin-sample-preview@0.8.59 - @ali/lowcode-plugin-undo-redo@0.8.59 - @ali/lowcode-rax-simulator-renderer@0.8.60 - @ali/lowcode-react-simulator-renderer@0.8.61 --- packages/demo/CHANGELOG.md | 8 ++++++++ packages/demo/package.json | 14 +++++++------- packages/designer/CHANGELOG.md | 11 +++++++++++ packages/designer/package.json | 2 +- packages/editor-preset-general/CHANGELOG.md | 8 ++++++++ packages/editor-preset-general/package.json | 8 ++++---- packages/editor-preset-vision/CHANGELOG.md | 12 ++++++++++++ packages/editor-preset-vision/package.json | 10 +++++----- packages/editor-skeleton/CHANGELOG.md | 8 ++++++++ packages/editor-skeleton/package.json | 4 ++-- packages/plugin-components-pane/CHANGELOG.md | 8 ++++++++ packages/plugin-components-pane/package.json | 4 ++-- packages/plugin-designer/CHANGELOG.md | 8 ++++++++ packages/plugin-designer/package.json | 4 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 ++++++++ packages/plugin-outline-pane/package.json | 4 ++-- packages/plugin-sample-preview/CHANGELOG.md | 8 ++++++++ packages/plugin-sample-preview/package.json | 4 ++-- packages/plugin-undo-redo/CHANGELOG.md | 8 ++++++++ packages/plugin-undo-redo/package.json | 6 +++--- packages/rax-simulator-renderer/CHANGELOG.md | 8 ++++++++ packages/rax-simulator-renderer/package.json | 6 +++--- packages/react-simulator-renderer/CHANGELOG.md | 8 ++++++++ packages/react-simulator-renderer/package.json | 4 ++-- 24 files changed, 138 insertions(+), 35 deletions(-) diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 5023eafba..c17d433cc 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.65](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.64...@ali/lowcode-demo@0.8.65) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [0.8.64](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.63...@ali/lowcode-demo@0.8.64) (2020-09-03) diff --git a/packages/demo/package.json b/packages/demo/package.json index 1fb3b5856..9108fe0fb 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "0.8.64", + "version": "0.8.65", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -10,15 +10,15 @@ "config": {}, "dependencies": { "@ali/lowcode-editor-core": "^0.8.36", - "@ali/lowcode-editor-skeleton": "^0.8.60", - "@ali/lowcode-plugin-components-pane": "^0.8.56", - "@ali/lowcode-plugin-designer": "^0.9.54", + "@ali/lowcode-editor-skeleton": "^0.8.61", + "@ali/lowcode-plugin-components-pane": "^0.8.57", + "@ali/lowcode-plugin-designer": "^0.9.55", "@ali/lowcode-plugin-event-bind-dialog": "^0.8.34", - "@ali/lowcode-plugin-outline-pane": "^0.8.60", + "@ali/lowcode-plugin-outline-pane": "^0.8.61", "@ali/lowcode-plugin-sample-logo": "^0.8.33", - "@ali/lowcode-plugin-sample-preview": "^0.8.58", + "@ali/lowcode-plugin-sample-preview": "^0.8.59", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^0.8.58", + "@ali/lowcode-plugin-undo-redo": "^0.8.59", "@ali/lowcode-plugin-variable-bind-dialog": "^0.8.32", "@ali/lowcode-plugin-zh-en": "^0.8.36", "@ali/lowcode-react-renderer": "^0.8.20", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 3d8370cbe..f2ede8b8c 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/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.9.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.54...@ali/lowcode-designer@0.9.55) (2020-09-08) + + +### Bug Fixes + +* 拖拽时要解除与原来节点的关系 ([7a6bf2c](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7a6bf2c)) + + + + ## [0.9.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.53...@ali/lowcode-designer@0.9.54) (2020-09-03) diff --git a/packages/designer/package.json b/packages/designer/package.json index 3a7c6930e..84f188878 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "0.9.54", + "version": "0.9.55", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index ee32c12d5..fa2918c68 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.9.40](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.39...@ali/lowcode-editor-preset-general@0.9.40) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [0.9.39](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.38...@ali/lowcode-editor-preset-general@0.9.39) (2020-09-03) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index 5be4fea92..dc153376a 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.9.39", + "version": "0.9.40", "private": true, "description": "Ali General Editor Preset", "main": "lib/index.js", @@ -16,9 +16,9 @@ "license": "MIT", "dependencies": { "@ali/lowcode-editor-core": "^0.8.36", - "@ali/lowcode-editor-skeleton": "^0.8.60", - "@ali/lowcode-plugin-designer": "^0.9.54", - "@ali/lowcode-plugin-outline-pane": "^0.8.60", + "@ali/lowcode-editor-skeleton": "^0.8.61", + "@ali/lowcode-plugin-designer": "^0.9.55", + "@ali/lowcode-plugin-outline-pane": "^0.8.61", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", "@alifd/next": "^1.19.12", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 447f0808a..f0e1de672 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.56...@ali/lowcode-editor-preset-vision@0.8.57) (2020-09-08) + + +### Bug Fixes + +* 移除 isInSimulator 函数 ([6370889](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6370889)) +* 补全 packageName, 否则在组件面板会被隐藏 ([88e5008](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/88e5008)) + + + + ## [0.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.55...@ali/lowcode-editor-preset-vision@0.8.56) (2020-09-03) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 89eba5d33..54f96a684 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.8.56", + "version": "0.8.57", "private": true, "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", @@ -15,11 +15,11 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", - "@ali/lowcode-editor-skeleton": "^0.8.60", - "@ali/lowcode-plugin-designer": "^0.9.54", - "@ali/lowcode-plugin-outline-pane": "^0.8.60", + "@ali/lowcode-editor-skeleton": "^0.8.61", + "@ali/lowcode-plugin-designer": "^0.9.55", + "@ali/lowcode-plugin-outline-pane": "^0.8.61", "@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-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 1b5aa7ebe..baee25529 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.61](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.60...@ali/lowcode-editor-skeleton@0.8.61) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.59...@ali/lowcode-editor-skeleton@0.8.60) (2020-09-03) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index e98006b58..d0ed67d9d 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "0.8.60", + "version": "0.8.61", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,7 +19,7 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index 8537b6439..49665b1d8 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.57](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.56...@ali/lowcode-plugin-components-pane@0.8.57) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [0.8.56](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.55...@ali/lowcode-plugin-components-pane@0.8.56) (2020-09-03) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 85aa62410..cb43b1d15 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "0.8.56", + "version": "0.8.57", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-types": "^0.8.19", "@ali/ve-component-list": "^1.1.1", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 00bfdade5..c4227dcbc 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.9.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.54...@ali/lowcode-plugin-designer@0.9.55) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [0.9.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.53...@ali/lowcode-plugin-designer@0.9.54) (2020-09-03) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index f541c18bd..1597f0241 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "0.9.54", + "version": "0.9.55", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", "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 98001e659..2c7512db3 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.61](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.60...@ali/lowcode-plugin-outline-pane@0.8.61) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.59...@ali/lowcode-plugin-outline-pane@0.8.60) (2020-09-03) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 5eb6b755e..e42b01f24 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "0.8.60", + "version": "0.8.61", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 56e1bcbe1..ff2066355 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.58...@ali/lowcode-plugin-sample-preview@0.8.59) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.57...@ali/lowcode-plugin-sample-preview@0.8.58) (2020-09-03) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 05617a9ec..294a0e7ef 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "0.8.58", + "version": "0.8.59", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -18,7 +18,7 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", "@alifd/next": "^1.x", "react": "^16.8.1" diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 9e6b5c98c..11192a204 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.58...@ali/lowcode-plugin-undo-redo@0.8.59) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.57...@ali/lowcode-plugin-undo-redo@0.8.58) (2020-09-03) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index b7b5b8d39..bf842ccbe 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "0.8.58", + "version": "0.8.59", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,9 +19,9 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-editor-core": "^0.8.36", - "@ali/lowcode-editor-skeleton": "^0.8.60", + "@ali/lowcode-editor-skeleton": "^0.8.61", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", "react": "^16.8.1", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 57fd05626..9ee8586fe 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.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.59...@ali/lowcode-rax-simulator-renderer@0.8.60) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [0.8.59](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.58...@ali/lowcode-rax-simulator-renderer@0.8.59) (2020-09-03) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 1e62b3b36..6305c32b8 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-rax-simulator-renderer", - "version": "0.8.59", + "version": "0.8.60", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-rax-renderer": "^0.1.7", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", @@ -53,5 +53,5 @@ "ts-node/register" ] }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.8.57/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@0.8.59/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 8aa7e8302..a7ac263d4 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.61](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.60...@ali/lowcode-react-simulator-renderer@0.8.61) (2020-09-08) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [0.8.60](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.59...@ali/lowcode-react-simulator-renderer@0.8.60) (2020-09-03) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 5137ba0fd..cc51ca74d 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@ali/lowcode-react-simulator-renderer", - "version": "0.8.60", + "version": "0.8.61", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,7 +13,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^0.9.54", + "@ali/lowcode-designer": "^0.9.55", "@ali/lowcode-react-renderer": "^0.8.20", "@ali/lowcode-types": "^0.8.19", "@ali/lowcode-utils": "^0.8.22", From cb72e4ce9204c4c4744e0cbd0953ee25ab64a804 Mon Sep 17 00:00:00 2001 From: "zude.hzd" Date: Tue, 8 Sep 2020 12:45:59 +0800 Subject: [PATCH 10/12] =?UTF-8?q?fix:js=E9=9D=A2=E6=9D=BF=E6=AF=8F?= =?UTF-8?q?=E6=AC=A1=E6=89=93=E5=BC=80=E7=9A=84=E6=97=B6=E5=80=99=E9=87=8D?= =?UTF-8?q?=E6=96=B0=E8=8E=B7=E5=8F=96=E6=9C=80=E6=96=B0schema?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/plugin-source-editor/src/index.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/packages/plugin-source-editor/src/index.tsx b/packages/plugin-source-editor/src/index.tsx index b746179d8..ab5116ad9 100644 --- a/packages/plugin-source-editor/src/index.tsx +++ b/packages/plugin-source-editor/src/index.tsx @@ -71,6 +71,8 @@ export default class SourceEditor extends Component<{ this.callEditorEvent('sourceEditor.focusByFunction', params); }); + + // 插件面板关闭事件,监听规则同上 editor.on('skeleton.panel-dock.unactive',(pluginName,dock)=>{ @@ -79,8 +81,14 @@ export default class SourceEditor extends Component<{ } }) - let schema = editor.get('designer').project.getSchema(); - this.initCode(schema); + // 插件面板打开事件,监听规则同上 + editor.on('skeleton.panel-dock.active',(pluginName,dock)=>{ + if (pluginName == 'sourceEditor'){ + this.initCode(); + } + }) + + this.initCode(); } @@ -121,7 +129,9 @@ export default class SourceEditor extends Component<{ } }; - initCode = (schema) => { + initCode = () => { + const {editor} = this.props; + let schema = editor.get('designer').project.getSchema(); let jsCode = js_beautify(transfrom.schema2Code(schema), { indent_size: 2, indent_empty_lines: true }); let css; From 47e814f807f3de020c9e39f064fb587da3363ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Tue, 8 Sep 2020 17:49:38 +0800 Subject: [PATCH 11/12] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E6=A0=91?= =?UTF-8?q?=E5=AD=90=E8=8A=82=E7=82=B9=E5=88=A0=E9=99=A4=E9=80=BB=E8=BE=91?= =?UTF-8?q?=20refactor:=20=E5=A2=9E=E5=BC=BA=E5=AF=B9=20react=20=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../designer/src/document/document-model.ts | 6 +++++- .../src/document/node/node-children.ts | 18 ++++++++++-------- packages/designer/src/document/node/node.ts | 16 ++++++++-------- packages/designer/src/utils/tree.ts | 7 +++++++ packages/utils/src/is-react.ts | 6 +++++- 5 files changed, 35 insertions(+), 18 deletions(-) create mode 100644 packages/designer/src/utils/tree.ts diff --git a/packages/designer/src/document/document-model.ts b/packages/designer/src/document/document-model.ts index 58d17a67f..47873449d 100644 --- a/packages/designer/src/document/document-model.ts +++ b/packages/designer/src/document/document-model.ts @@ -11,6 +11,7 @@ import { History } from './history'; import { TransformStage } from './node'; import { uniqueId } from '@ali/lowcode-utils'; import { ModalNodesManager } from './node'; +import { foreachReverse } from '../utils/tree'; export type GetDataType = T extends undefined ? NodeType extends { @@ -324,10 +325,13 @@ export class DocumentModel { } import(schema: RootSchema, checkId = false) { + // TODO: 暂时用饱和式删除,原因是 Slot 节点并不是树节点,无法正常递归删除 this.nodes.forEach(node => { this.internalRemoveAndPurgeNode(node, true); - this.destroyNode(node); }); + // foreachReverse(this.rootNode?.children, (node: Node) => { + // this.internalRemoveAndPurgeNode(node, true); + // }); this.rootNode?.import(schema as any, checkId); // todo: select added and active track added } diff --git a/packages/designer/src/document/node/node-children.ts b/packages/designer/src/document/node/node-children.ts index 527b72c61..3f4bc4a27 100644 --- a/packages/designer/src/document/node/node-children.ts +++ b/packages/designer/src/document/node/node-children.ts @@ -4,6 +4,7 @@ import { TransformStage } from './transform-stage'; import { NodeData, isNodeSchema } from '@ali/lowcode-types'; import { shallowEqual } from '@ali/lowcode-utils'; import { EventEmitter } from 'events'; +import { foreachReverse } from '../../utils/tree'; export class NodeChildren { @obx.val private children: Node[]; @@ -118,7 +119,7 @@ export class NodeChildren { */ delete(node: Node, purge = false, useMutator = true): boolean { if (node.isParental()) { - node.children.forEach(subNode => { + foreachReverse(node.children, (subNode: Node) => { subNode.remove(useMutator, purge); }); } @@ -131,18 +132,19 @@ export class NodeChildren { console.error(err); } } + const document = node.document; + document.unlinkNode(node); + document.selection.remove(node.id); + document.destroyNode(node); + this.emitter.emit('change'); const i = this.children.indexOf(node); + if (useMutator) { + this.reportModified(node, this.owner, {type: 'remove', removeIndex: i, removeNode: node}); + } if (i < 0) { return false; } this.children.splice(i, 1); - const document = node.document; - document.unlinkNode(node); - document.selection.remove(node.id); - this.emitter.emit('change'); - if (useMutator) { - this.reportModified(node, this.owner, {type: 'remove', removeIndex: i, removeNode: node}); - } return false; } diff --git a/packages/designer/src/document/node/node.ts b/packages/designer/src/document/node/node.ts index 5b11fc097..589cd8a15 100644 --- a/packages/designer/src/document/node/node.ts +++ b/packages/designer/src/document/node/node.ts @@ -262,7 +262,7 @@ export class Node { } // 解除老的父子关系,但不需要真的删除节点 - if (this._parent) { + if (this._parent && !parent) { if (this.isSlot()) { this._parent.unlinkSlot(this); } else { @@ -661,17 +661,17 @@ export class Node { * 删除一个Slot节点 */ removeSlot(slotNode: Node, purge = false): boolean { + if (purge) { + // should set parent null + slotNode?.internalSetParent(null, false); + slotNode?.purge(); + } + this.document.unlinkNode(slotNode); + this.document.selection.remove(slotNode.id); const i = this._slots.indexOf(slotNode); if (i < 0) { return false; } - if (purge) { - // should set parent null - slotNode.internalSetParent(null, false); - slotNode.purge(); - } - this.document.unlinkNode(slotNode); - this.document.selection.remove(slotNode.id); this._slots.splice(i, 1); return false; } diff --git a/packages/designer/src/utils/tree.ts b/packages/designer/src/utils/tree.ts new file mode 100644 index 000000000..2cd8ff515 --- /dev/null +++ b/packages/designer/src/utils/tree.ts @@ -0,0 +1,7 @@ +import { NodeChildren } from '../document/node/node-children'; + +export function foreachReverse(arr: NodeChildren, fn: Function, context: any = {}) { + for (let i = arr.length - 1; i >= 0; i--) { + fn.call(context, arr.get(i)); + } +} \ No newline at end of file diff --git a/packages/utils/src/is-react.ts b/packages/utils/src/is-react.ts index cb5059505..fdaed5f45 100644 --- a/packages/utils/src/is-react.ts +++ b/packages/utils/src/is-react.ts @@ -10,8 +10,12 @@ export function acceptsRef(obj: any): boolean { return obj?.prototype?.isReactComponent || (obj.$$typeof && obj.$$typeof === REACT_FORWARD_REF_TYPE); } +function isForwardRefType(obj: any): boolean { + return obj?.$$typeof && obj?.$$typeof === REACT_FORWARD_REF_TYPE; +} + export function isReactComponent(obj: any): obj is ComponentType { - return obj && (isReactClass(obj) || typeof obj === 'function'); + return obj && (isReactClass(obj) || typeof obj === 'function' || isForwardRefType(obj)); } export function wrapReactClass(view: FunctionComponent) { From 458b4952b4f050add35853661fbf06f98a6914b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Tue, 8 Sep 2020 20:16:27 +0800 Subject: [PATCH 12/12] chore: fix conflicts --- packages/code-generator/CHANGELOG.md | 3 --- packages/designer/CHANGELOG.md | 7 ------- packages/editor-core/CHANGELOG.md | 4 ---- packages/editor-preset-general/CHANGELOG.md | 5 ----- packages/editor-preset-vision/CHANGELOG.md | 12 ------------ packages/editor-setters/CHANGELOG.md | 2 -- packages/editor-skeleton/CHANGELOG.md | 3 --- packages/material-parser/CHANGELOG.md | 9 --------- packages/plugin-components-pane/CHANGELOG.md | 4 ---- packages/plugin-designer/CHANGELOG.md | 4 ---- packages/plugin-event-bind-dialog/CHANGELOG.md | 4 ---- packages/plugin-outline-pane/CHANGELOG.md | 2 -- packages/plugin-undo-redo/CHANGELOG.md | 1 - packages/plugin-variable-bind-dialog/CHANGELOG.md | 3 --- packages/plugin-zh-en/CHANGELOG.md | 1 - packages/rax-render/CHANGELOG.md | 6 ------ packages/react-renderer/CHANGELOG.md | 9 --------- packages/types/CHANGELOG.md | 1 - packages/utils/src/index.ts | 4 ---- 19 files changed, 84 deletions(-) diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index 8ebc3cde2..16d59a80d 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -238,14 +238,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -<<<<<<< HEAD * code generator main process ([021d6e0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/021d6e0)) * demo schema & complex children type ([a5ee6bd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a5ee6bd)) * fix gaps ([32af3d3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/32af3d3)) * project builder fix & publish demo to disk ([26983b3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/26983b3)) -======= * code generator main process ([021d6e0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/021d6e0fe9fb29a8b6c1c5d5f4d06ec71896faa5)) * demo schema & complex children type ([a5ee6bd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a5ee6bd55806fc9aea695096ccd4c7f50b8e31c4)) * fix gaps ([32af3d3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/32af3d3a3ca4d5aca15be25e05c840c8ea0cb6ae)) * project builder fix & publish demo to disk ([26983b3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/26983b38c2b0f1d39d79964eb54d8ce60250dd82)) ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index a2262885f..1aadd8b58 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -45,17 +45,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline * 🎸 支持设置模拟器的 viewport 的宽高和缩放级别 ([3a54241](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3a54241)) * 新增simulatorurl,可以设置cdn使用simulator ([1f45b05](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/1f45b05)) ->>>>>>> release/1.0.0 -<<<<<<< HEAD **Note:** Version bump only for package @ali/lowcode-designer -======= ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@1.0.4-0...@ali/lowcode-designer@1.0.5-0) (2020-08-20) ->>>>>>> release/1.0.0 ## [0.9.52](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.51...@ali/lowcode-designer@0.9.52) (2020-08-27) @@ -105,7 +101,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [0.9.48](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.47...@ali/lowcode-designer@0.9.48) (2020-08-20) ->>>>>>> master @@ -130,7 +125,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes * support dropObject is data ([809fda7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/809fda7)) ->>>>>>> master @@ -224,7 +218,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [0.9.38](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.37...@ali/lowcode-designer@0.9.38) (2020-08-06) ->>>>>>> master ### Bug Fixes diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 5cf7c879c..8fdfb9476 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -31,7 +31,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@1.0.4-0...@ali/lowcode-editor-core@1.0.5-0) (2020-08-20) ->>>>>>> release/1.0.0 ## [0.8.34](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.33...@ali/lowcode-editor-core@0.8.34) (2020-08-27) @@ -52,10 +51,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ->>>>>>> master ## [0.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.30...@ali/lowcode-editor-core@0.8.32) (2020-08-20) ->>>>>>> master @@ -98,7 +95,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.0.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.13.0...@ali/lowcode-editor-core@1.0.0) (2020-08-17) ## [0.8.30](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.29...@ali/lowcode-editor-core@0.8.30) (2020-08-19) ->>>>>>> master diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 7ba1611e6..e0ab87e24 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/CHANGELOG.md @@ -40,7 +40,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@1.0.4-0...@ali/lowcode-editor-preset-general@1.0.5-0) (2020-08-20) ->>>>>>> release/1.0.0 ## [0.9.37](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.36...@ali/lowcode-editor-preset-general@0.9.37) (2020-08-27) @@ -74,10 +73,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-editor-preset-general ->>>>>>> master ## [0.9.33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.32...@ali/lowcode-editor-preset-general@0.9.33) (2020-08-20) ->>>>>>> master @@ -153,10 +150,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-editor-preset-general ->>>>>>> master ## [0.9.28](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.27...@ali/lowcode-editor-preset-general@0.9.28) (2020-08-14) ->>>>>>> master diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 782c81015..32b810d5e 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/CHANGELOG.md @@ -27,19 +27,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -<<<<<<< HEAD -======= * 合并master分支 ([bd2c6ad](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/bd2c6ad)) ->>>>>>> release/1.0.0 * 用户在动态修改 prototype 时也需要重新计算 meta ([66c21c0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/66c21c0)) -<<<<<<< HEAD ## [0.8.55](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.54...@ali/lowcode-editor-preset-vision@0.8.55) (2020-09-03) -======= ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.4-0...@ali/lowcode-editor-preset-vision@1.0.5-0) (2020-08-20) @@ -50,19 +45,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.4-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.3-0...@ali/lowcode-editor-preset-vision@1.0.4-0) (2020-08-20) ->>>>>>> release/1.0.0 **Note:** Version bump only for package @ali/lowcode-editor-preset-vision -<<<<<<< HEAD -======= ## [1.0.3-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.2-0...@ali/lowcode-editor-preset-vision@1.0.3-0) (2020-08-20) -======= ->>>>>>> release/1.0.0 ## [0.8.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.53...@ali/lowcode-editor-preset-vision@0.8.54) (2020-08-27) @@ -125,7 +115,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ->>>>>>> master ## [0.8.49](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.48...@ali/lowcode-editor-preset-vision@0.8.49) (2020-08-19) @@ -191,7 +180,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [0.8.44](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.43...@ali/lowcode-editor-preset-vision@0.8.44) (2020-08-14) ->>>>>>> master diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 674bf4426..4a7538d89 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-setters/CHANGELOG.md @@ -45,7 +45,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@1.0.4-0...@ali/lowcode-editor-setters@1.0.5-0) (2020-08-20) ->>>>>>> release/1.0.0 ## [0.9.19](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.18...@ali/lowcode-editor-setters@0.9.19) (2020-08-27) @@ -118,7 +117,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.0.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.14.0...@ali/lowcode-editor-setters@1.0.0) (2020-08-17) ## [0.9.16](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.15...@ali/lowcode-editor-setters@0.9.16) (2020-08-19) ->>>>>>> master diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index bb66a2715..36147f732 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -50,7 +50,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@1.0.4-0...@ali/lowcode-editor-skeleton@1.0.5-0) (2020-08-20) ->>>>>>> release/1.0.0 ## [0.8.58](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.57...@ali/lowcode-editor-skeleton@0.8.58) (2020-08-27) @@ -90,10 +89,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-editor-skeleton ->>>>>>> master ## [0.8.54](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.53...@ali/lowcode-editor-skeleton@0.8.54) (2020-08-20) ->>>>>>> master diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index 8c5bf393c..af2ebc4c8 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -202,41 +202,32 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -<<<<<<< HEAD * 🐛 fix bug of transforming type ([ebbe58d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ebbe58d)) * 🐛 fix bug of validate schema ([3f97523](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3f97523)) -======= * 🐛 fix bug of transforming type ([ebbe58d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ebbe58df70f047f4b5fe367ac4b4a08de8a65e5d)) * 🐛 fix bug of validate schema ([3f97523](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3f975232c7cd551bc9c74962095dcc9b127af489)) ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc ### Code Refactoring -<<<<<<< HEAD * 💡 refactor with react-docgen ([64c9daa](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/64c9daa)) -======= * 💡 refactor with react-docgen ([64c9daa](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/64c9daa1f451fdfeab2777e4beefc5d5e1890ba1)) ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc ### Features -<<<<<<< HEAD * complete component protocol json schema & validate method ([3df360d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3df360d)) * immigrate aimake materialin ([44ac85f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/44ac85f)) * import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e66168)) * remove -p tslint.json for test ([6d013e1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6d013e1)) * remove useless codes & modify generator ([dcd1b33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dcd1b33)) * support multiple exported components ([db1b6de](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/db1b6de)) -======= * complete component protocol json schema & validate method ([3df360d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/3df360de85d425b2926ea50ff26a8df27ec36a78)) * immigrate aimake materialin ([44ac85f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/44ac85f8a6a35bcd50f2e2b74a022e3cebe3cdef)) * import react-docgen to parse propTypes ([6e66168](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6e661686e4693e69279c496f3be1dd173703c55e)) * remove -p tslint.json for test ([6d013e1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/6d013e18f93bad5647cb9ea0a497336f64e1459a)) * remove useless codes & modify generator ([dcd1b33](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dcd1b33d3bf8bdf5577dcc980608d9eac8d99372)) * support multiple exported components ([db1b6de](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/db1b6deaca256b0d107fe607de6cd0fc90517a9c)) ->>>>>>> df955e1db90ff104cd11160def80113cfd6faccc ### BREAKING CHANGES diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index dfc2a5faa..d956123ea 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -73,10 +73,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-components-pane ->>>>>>> master ## [0.8.50](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.49...@ali/lowcode-plugin-components-pane@0.8.50) (2020-08-20) ->>>>>>> master @@ -149,10 +147,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-components-pane ->>>>>>> master ## [0.8.45](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.44...@ali/lowcode-plugin-components-pane@0.8.45) (2020-08-14) ->>>>>>> master diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 608f13dd1..32ad8d7ba 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -79,10 +79,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-designer ->>>>>>> master ## [0.9.48](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.47...@ali/lowcode-plugin-designer@0.9.48) (2020-08-20) ->>>>>>> master @@ -155,10 +153,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-designer ->>>>>>> master ## [0.9.43](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.42...@ali/lowcode-plugin-designer@0.9.43) (2020-08-14) ->>>>>>> master diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md index 7253cf5f2..57d523051 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -38,9 +38,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.0.5-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@1.0.4-0...@ali/lowcode-plugin-event-bind-dialog@1.0.5-0) (2020-08-20) -======= -======= ->>>>>>> release/1.0.0 ## [0.8.32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.31...@ali/lowcode-plugin-event-bind-dialog@0.8.32) (2020-08-27) @@ -104,7 +101,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.0.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.13.0...@ali/lowcode-plugin-event-bind-dialog@1.0.0) (2020-08-17) ## [0.8.29](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.28...@ali/lowcode-plugin-event-bind-dialog@0.8.29) (2020-08-19) ->>>>>>> master diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 5a102b3fd..d64662608 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -128,10 +128,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-outline-pane ->>>>>>> master ## [0.8.49](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.48...@ali/lowcode-plugin-outline-pane@0.8.49) (2020-08-14) ->>>>>>> master diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index d026ea1fd..de6aca161 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -153,7 +153,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-undo-redo ->>>>>>> master ## [0.8.47](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.46...@ali/lowcode-plugin-undo-redo@0.8.47) (2020-08-14) diff --git a/packages/plugin-variable-bind-dialog/CHANGELOG.md b/packages/plugin-variable-bind-dialog/CHANGELOG.md index 3b529c99a..be8912db0 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-bind-dialog/CHANGELOG.md @@ -50,10 +50,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog ->>>>>>> master ## [0.8.28](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.27...@ali/lowcode-plugin-variable-bind-dialog@0.8.28) (2020-08-20) ->>>>>>> master @@ -96,7 +94,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.0.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.13.0...@ali/lowcode-plugin-variable-bind-dialog@1.0.0) (2020-08-17) ## [0.8.27](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.26...@ali/lowcode-plugin-variable-bind-dialog@0.8.27) (2020-08-19) ->>>>>>> master diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index d11c4dff2..6a920c55a 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -95,7 +95,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.0.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.13.0...@ali/lowcode-plugin-zh-en@1.0.0) (2020-08-17) ## [0.8.31](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.30...@ali/lowcode-plugin-zh-en@0.8.31) (2020-08-19) ->>>>>>> master diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index eb2a037ea..4fb680d27 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -119,7 +119,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ->>>>>>> master ## [0.1.6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@0.1.5...@ali/lowcode-rax-renderer@0.1.6) (2020-07-22) @@ -188,11 +187,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features * init rax-render ([7167767](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7167767)) -<<<<<<< HEAD - -======= - ->>>>>>> master && && || diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 9ad93d3e6..a8fa78928 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/CHANGELOG.md @@ -110,12 +110,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes * 修复判断动态 setter 的逻辑 ([d195d7f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d195d7f)) ->>>>>>> master -<<<<<<< HEAD **Note:** Version bump only for package @ali/lowcode-react-renderer @@ -152,17 +150,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [0.9.0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@0.8.17...@ali/lowcode-react-renderer@0.9.0) (2020-08-14) -======= -======= ->>>>>>> master ## [0.8.18](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@0.8.17...@ali/lowcode-react-renderer@0.8.18) (2020-08-14) ->>>>>>> master ### Bug Fixes -<<<<<<< HEAD * dropdown and menu schema ([ae1d125](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ae1d125)) * parse custom methods function ([87d8b86](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/87d8b86)) @@ -170,11 +163,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features * 🎸 add demo-server ([df35c6a](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/df35c6a)) -======= * remove debugger ([a835dc6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a835dc6)) * render error样式 ([d601d5e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d601d5e)) * 组件缺失占位 ([aff2f34](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/aff2f34)) ->>>>>>> master diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 89b58525f..d9994c37e 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -117,7 +117,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes * 修复判断动态 setter 的逻辑 ([d195d7f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/d195d7f)) ->>>>>>> master diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 2dcf9f8a6..0f9fcad2a 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -18,9 +18,5 @@ export * from './set-prototype-of'; export * from './shallow-equal'; export * from './svg-icon'; export * from './unique-id'; -<<<<<<< HEAD -export * from './env'; -======= export * from './build-components'; export * from './appHelper'; ->>>>>>> release/1.0.0