Merge branch 'trunk-vision' into release/0.9.51

This commit is contained in:
牧毅 2020-09-17 21:00:31 +08:00
commit 56e3ae25f7
30 changed files with 260 additions and 134 deletions

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.65"></a>
## [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
<a name="0.8.64"></a> <a name="0.8.64"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-demo", "name": "@ali/lowcode-demo",
"version": "0.8.64", "version": "0.8.65",
"private": true, "private": true,
"description": "低代码引擎 DEMO", "description": "低代码引擎 DEMO",
"scripts": { "scripts": {
@ -10,15 +10,15 @@
"config": {}, "config": {},
"dependencies": { "dependencies": {
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-editor-skeleton": "^0.8.60", "@ali/lowcode-editor-skeleton": "^0.8.61",
"@ali/lowcode-plugin-components-pane": "^0.8.56", "@ali/lowcode-plugin-components-pane": "^0.8.57",
"@ali/lowcode-plugin-designer": "^0.9.54", "@ali/lowcode-plugin-designer": "^0.9.55",
"@ali/lowcode-plugin-event-bind-dialog": "^0.8.34", "@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-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-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-variable-bind-dialog": "^0.8.32",
"@ali/lowcode-plugin-zh-en": "^0.8.36", "@ali/lowcode-plugin-zh-en": "^0.8.36",
"@ali/lowcode-react-renderer": "^0.8.20", "@ali/lowcode-react-renderer": "^0.8.20",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.9.55"></a>
## [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))
<a name="0.9.54"></a> <a name="0.9.54"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-designer", "name": "@ali/lowcode-designer",
"version": "0.9.54", "version": "0.9.55",
"description": "Designer for Ali LowCode Engine", "description": "Designer for Ali LowCode Engine",
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",

View File

@ -267,14 +267,16 @@ export class DocumentModel {
/** /**
* *
*/ */
internalRemoveAndPurgeNode(node: Node) { internalRemoveAndPurgeNode(node: Node, useMutator = false) {
if (!this.nodes.has(node)) { if (!this.nodes.has(node)) {
return; return;
} }
this._nodesMap.delete(node.id); node.remove(useMutator);
}
unlinkNode(node: Node) {
this.nodes.delete(node); this.nodes.delete(node);
this.selection.remove(node.id); this._nodesMap.delete(node.id);
node.remove();
} }
@obx.ref private _dropLocation: DropLocation | null = null; @obx.ref private _dropLocation: DropLocation | null = null;
@ -318,20 +320,20 @@ export class DocumentModel {
* schema * schema
*/ */
get schema(): RootSchema { get schema(): RootSchema {
return this.rootNode.schema as any; return this.rootNode?.schema as any;
} }
import(schema: RootSchema, checkId = false) { import(schema: RootSchema, checkId = false) {
// TODO: do purge
this.nodes.forEach(node => { this.nodes.forEach(node => {
this.internalRemoveAndPurgeNode(node, true);
this.destroyNode(node); this.destroyNode(node);
}); });
this.rootNode.import(schema as any, checkId); this.rootNode?.import(schema as any, checkId);
// todo: select added and active track added // todo: select added and active track added
} }
export(stage: TransformStage = TransformStage.Serilize) { export(stage: TransformStage = TransformStage.Serilize) {
return this.rootNode.export(stage); return this.rootNode?.export(stage);
} }
/** /**

View File

@ -16,7 +16,7 @@ export class NodeChildren {
} }
interalInitParent() { internalInitParent() {
this.children.forEach(child => child.internalSetParent(this.owner)); this.children.forEach(child => child.internalSetParent(this.owner));
} }
@ -56,7 +56,7 @@ export class NodeChildren {
} }
this.children = children; this.children = children;
this.interalInitParent(); this.internalInitParent();
if (!shallowEqual(children, originChildren)) { if (!shallowEqual(children, originChildren)) {
this.emitter.emit('change'); this.emitter.emit('change');
} }
@ -92,20 +92,53 @@ export class NodeChildren {
return this.children.length; return this.children.length;
} }
private purged = false;
/** /**
* *
*/ */
delete(node: Node, purge = false, useMutator = true): boolean { purge(useMutator = true) {
if (this.purged) {
return;
}
this.purged = true;
this.children.forEach((child) => {
child.purge(useMutator);
});
}
unlinkChild(node: Node) {
const i = this.children.indexOf(node); const i = this.children.indexOf(node);
if (i < 0) { if (i < 0) {
return false; return false;
} }
const deleted = this.children.splice(i, 1)[0]; this.children.splice(i, 1);
}
/**
*
*/
delete(node: Node, purge = false, useMutator = true): boolean {
if (node.isParental()) {
node.children.forEach(subNode => {
subNode.remove(useMutator, purge);
});
}
if (purge) { if (purge) {
// should set parent null // should set parent null
deleted.internalSetParent(null, useMutator); node.internalSetParent(null, useMutator);
deleted.purge(useMutator); try {
node.purge(useMutator);
} catch(err) {
console.error(err);
} }
}
const i = this.children.indexOf(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'); this.emitter.emit('change');
if (useMutator) { if (useMutator) {
this.reportModified(node, this.owner, {type: 'remove', removeIndex: i, removeNode: node}); this.reportModified(node, this.owner, {type: 'remove', removeIndex: i, removeNode: node});
@ -294,18 +327,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]() { get [Symbol.toStringTag]() {
// 保证向前兼容性 // 保证向前兼容性
return 'Array'; return 'Array';
@ -331,7 +352,7 @@ export class NodeChildren {
try { try {
callbacks?.onSubtreeModified.call(node, owner, options); callbacks?.onSubtreeModified.call(node, owner, options);
} catch (e) { } catch (e) {
console.error('error when excute experimental.callbacks.onNodeAdd', e); console.error('error when excute experimental.callbacks.onSubtreeModified', e);
} }
} }

View File

@ -155,9 +155,12 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
children: isDOMText(children) || isJSExpression(children) ? children : '', children: isDOMText(children) || isJSExpression(children) ? children : '',
}); });
} else { } else {
// 这里 props 被初始化两次,一次 new一次 importnew 的实例需要给 propsReducer 的钩子去使用,
// import 是为了使用钩子返回的值,并非完全幂等的操作,部分行为执行两次会有 bug
// 所以在 props 里会对 new / import 做一些区别化的解析
this.props = new Props(this, props, extras); this.props = new Props(this, props, extras);
this._children = new NodeChildren(this as ParentalNode, this.initialChildren(children)); 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.props.import(this.upgradeProps(this.initProps(props || {})), this.upgradeProps(extras || {}));
this.setupAutoruns(); this.setupAutoruns();
} }
@ -258,14 +261,15 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
return; return;
} }
// 解除老的父子关系,但不需要真的删除节点
if (this._parent) { if (this._parent) {
if (this.isSlot()) { if (this.isSlot()) {
this._parent.removeSlot(this, false); this._parent.unlinkSlot(this);
} else { } else {
this._parent.children.delete(this, false, useMutator); this._parent.children.unlinkChild(this);
} }
} }
// 建立新的父子关系
this._parent = parent; this._parent = parent;
if (parent) { if (parent) {
this.document.removeWillPurge(this); this.document.removeWillPurge(this);
@ -298,12 +302,12 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
/** /**
* *
*/ */
remove(useMutator = true) { remove(useMutator = true, purge = true) {
if (this.parent) { if (this.parent) {
if (this.isSlot()) { if (this.isSlot()) {
this.parent.removeSlot(this, true); this.parent.removeSlot(this, purge);
} else { } else {
this.parent.children.delete(this, true, useMutator); this.parent.children.delete(this, purge, useMutator);
} }
} }
} }
@ -645,6 +649,14 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
return comparePosition(this, otherNode); return comparePosition(this, otherNode);
} }
unlinkSlot(slotNode: Node) {
const i = this._slots.indexOf(slotNode);
if (i < 0) {
return false;
}
this._slots.splice(i, 1);
}
/** /**
* Slot节点 * Slot节点
*/ */
@ -653,12 +665,14 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
if (i < 0) { if (i < 0) {
return false; return false;
} }
const deleted = this._slots.splice(i, 1)[0];
if (purge) { if (purge) {
// should set parent null // should set parent null
deleted.internalSetParent(null); slotNode.internalSetParent(null, false);
deleted.purge(); slotNode.purge();
} }
this.document.unlinkNode(slotNode);
this.document.selection.remove(slotNode.id);
this._slots.splice(i, 1);
return false; return false;
} }
@ -699,20 +713,10 @@ export class Node<Schema extends NodeSchema = NodeSchema> {
if (this.purged) { if (this.purged) {
return; return;
} }
// if (this._parent) {
// // should remove thisNode before purge
// this.remove(useMutator);
// return;
// }
this.purged = true; this.purged = true;
if (this.isParental()) {
this.children.purge(useMutator);
}
this.autoruns?.forEach((dispose) => dispose()); this.autoruns?.forEach((dispose) => dispose());
this.props.purge(); this.props.purge();
this.document.internalRemoveAndPurgeNode(this);
this.document.destroyNode(this); this.document.destroyNode(this);
this.remove(useMutator);
} }
/** /**

View File

@ -22,6 +22,37 @@ export class Prop implements IPropParent {
readonly isProp = true; readonly isProp = true;
readonly owner: Node; 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 * @see SettingTarget
*/ */
@ -197,7 +228,7 @@ export class Prop implements IPropParent {
} else if (Array.isArray(val)) { } else if (Array.isArray(val)) {
this._type = 'list'; this._type = 'list';
} else if (isPlainObject(val)) { } else if (isPlainObject(val)) {
if (isJSSlot(val)) { if (isJSSlot(val) && this.options.propsMode !== 'init') {
this.setAsSlot(val); this.setAsSlot(val);
return; return;
} }
@ -347,34 +378,6 @@ export class Prop implements IPropParent {
return this._maps; 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 * @param stash

View File

@ -57,9 +57,9 @@ export class Props implements IPropParent {
constructor(readonly owner: Node, value?: PropsMap | PropsList | null, extras?: object) { constructor(readonly owner: Node, value?: PropsMap | PropsList | null, extras?: object) {
if (Array.isArray(value)) { if (Array.isArray(value)) {
this.type = 'list'; 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) { } 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) { if (extras) {
Object.keys(extras).forEach(key => { Object.keys(extras).forEach(key => {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.9.40"></a>
## [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
<a name="0.9.39"></a> <a name="0.9.39"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-editor-preset-general", "name": "@ali/lowcode-editor-preset-general",
"version": "0.9.39", "version": "0.9.40",
"private": true, "private": true,
"description": "Ali General Editor Preset", "description": "Ali General Editor Preset",
"main": "lib/index.js", "main": "lib/index.js",
@ -16,9 +16,9 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-editor-skeleton": "^0.8.60", "@ali/lowcode-editor-skeleton": "^0.8.61",
"@ali/lowcode-plugin-designer": "^0.9.54", "@ali/lowcode-plugin-designer": "^0.9.55",
"@ali/lowcode-plugin-outline-pane": "^0.8.60", "@ali/lowcode-plugin-outline-pane": "^0.8.61",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",
"@alifd/next": "^1.19.12", "@alifd/next": "^1.19.12",

View File

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.57"></a>
## [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))
<a name="0.8.56"></a> <a name="0.8.56"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-editor-preset-vision", "name": "@ali/lowcode-editor-preset-vision",
"version": "0.8.56", "version": "0.8.57",
"private": true, "private": true,
"description": "Vision Polyfill for Ali lowCode engine", "description": "Vision Polyfill for Ali lowCode engine",
"main": "lib/index.js", "main": "lib/index.js",
@ -15,11 +15,11 @@
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-editor-skeleton": "^0.8.60", "@ali/lowcode-editor-skeleton": "^0.8.61",
"@ali/lowcode-plugin-designer": "^0.9.54", "@ali/lowcode-plugin-designer": "^0.9.55",
"@ali/lowcode-plugin-outline-pane": "^0.8.60", "@ali/lowcode-plugin-outline-pane": "^0.8.61",
"@ali/ve-i18n-util": "^2.0.0", "@ali/ve-i18n-util": "^2.0.0",
"@ali/ve-icons": "^4.1.9", "@ali/ve-icons": "^4.1.9",
"@ali/ve-less-variables": "2.0.3", "@ali/ve-less-variables": "2.0.3",

View File

@ -26,21 +26,10 @@ export const designer = new Designer({ editor: editor });
editor.set(Designer, designer); editor.set(Designer, designer);
editor.set('designer', designer); editor.set('designer', designer);
let nodeCache: any = {};
designer.project.onCurrentDocumentChange((doc) => { designer.project.onCurrentDocumentChange((doc) => {
nodeCache = {};
doc.nodesMap.forEach((node) => {
nodeCache[node.id] = node;
});
doc.onRendererReady(() => { doc.onRendererReady(() => {
bus.emit(VE_EVENTS.VE_PAGE_PAGE_READY); bus.emit(VE_EVENTS.VE_PAGE_PAGE_READY);
}); });
doc.onNodeCreate((node) => {
nodeCache[node.id] = node;
});
doc.onNodeDestroy((node) => {
delete nodeCache[node.id];
});
}); });
interface Variable { interface Variable {
@ -89,6 +78,18 @@ function upgradePropsReducer(props: any) {
// 升级 Props // 升级 Props
designer.addPropsReducer(upgradePropsReducer, TransformStage.Upgrade); 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 初始化 // 节点 props 初始化
designer.addPropsReducer((props, node) => { designer.addPropsReducer((props, node) => {
// run initials // run initials
@ -96,16 +97,8 @@ designer.addPropsReducer((props, node) => {
...props, ...props,
}; };
if (newProps.fieldId) { if (newProps.fieldId) {
const fieldIds: any = []; const fieldIds = getCurrentFieldIds();
Object.keys(nodeCache).forEach(nodeId => {
if (nodeId === node.id) {
return;
}
const fieldId = nodeCache[nodeId].getPropValue('fieldId');
if (fieldId) {
fieldIds.push(fieldId);
}
});
// 全局的关闭 uniqueIdChecker 信号,在 ve-utils 中实现 // 全局的关闭 uniqueIdChecker 信号,在 ve-utils 中实现
if (fieldIds.indexOf(props.fieldId) >= 0 && !(window as any).__disable_unique_id_checker__) { if (fieldIds.indexOf(props.fieldId) >= 0 && !(window as any).__disable_unique_id_checker__) {
newProps.fieldId = undefined; newProps.fieldId = undefined;

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.61"></a>
## [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
<a name="0.8.60"></a> <a name="0.8.60"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-editor-skeleton", "name": "@ali/lowcode-editor-skeleton",
"version": "0.8.60", "version": "0.8.61",
"description": "alibaba lowcode editor skeleton", "description": "alibaba lowcode editor skeleton",
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
@ -19,7 +19,7 @@
"editor" "editor"
], ],
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.57"></a>
## [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
<a name="0.8.56"></a> <a name="0.8.56"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-plugin-components-pane", "name": "@ali/lowcode-plugin-components-pane",
"version": "0.8.56", "version": "0.8.57",
"description": "alibaba lowcode editor component-list plugin", "description": "alibaba lowcode editor component-list plugin",
"files": [ "files": [
"es/", "es/",
@ -20,7 +20,7 @@
], ],
"author": "xiayang.xy", "author": "xiayang.xy",
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/ve-component-list": "^1.1.1", "@ali/ve-component-list": "^1.1.1",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.9.55"></a>
## [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
<a name="0.9.54"></a> <a name="0.9.54"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-plugin-designer", "name": "@ali/lowcode-plugin-designer",
"version": "0.9.54", "version": "0.9.55",
"description": "alibaba lowcode editor designer plugin", "description": "alibaba lowcode editor designer plugin",
"files": [ "files": [
"es", "es",
@ -20,7 +20,7 @@
], ],
"author": "xiayang.xy", "author": "xiayang.xy",
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"react": "^16.8.1", "react": "^16.8.1",
"react-dom": "^16.8.1" "react-dom": "^16.8.1"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.61"></a>
## [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
<a name="0.8.60"></a> <a name="0.8.60"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-plugin-outline-pane", "name": "@ali/lowcode-plugin-outline-pane",
"version": "0.8.60", "version": "0.8.61",
"description": "Outline pane for Ali lowCode engine", "description": "Outline pane for Ali lowCode engine",
"files": [ "files": [
"es", "es",
@ -14,7 +14,7 @@
"test:snapshot": "ava --update-snapshots" "test:snapshot": "ava --update-snapshots"
}, },
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.59"></a>
## [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
<a name="0.8.58"></a> <a name="0.8.58"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-plugin-sample-preview", "name": "@ali/lowcode-plugin-sample-preview",
"version": "0.8.58", "version": "0.8.59",
"description": "alibaba lowcode editor sample preview plugin", "description": "alibaba lowcode editor sample preview plugin",
"files": [ "files": [
"es", "es",
@ -18,7 +18,7 @@
"editor" "editor"
], ],
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@ali/lowcode-editor-core": "^0.8.36",
"@alifd/next": "^1.x", "@alifd/next": "^1.x",
"react": "^16.8.1" "react": "^16.8.1"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.59"></a>
## [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
<a name="0.8.58"></a> <a name="0.8.58"></a>
## [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) ## [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)

View File

@ -1,6 +1,6 @@
{ {
"name": "@ali/lowcode-plugin-undo-redo", "name": "@ali/lowcode-plugin-undo-redo",
"version": "0.8.58", "version": "0.8.59",
"description": "alibaba lowcode editor undo redo plugin", "description": "alibaba lowcode editor undo redo plugin",
"files": [ "files": [
"es", "es",
@ -19,9 +19,9 @@
], ],
"author": "xiayang.xy", "author": "xiayang.xy",
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-editor-core": "^0.8.36", "@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-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",
"react": "^16.8.1", "react": "^16.8.1",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.60"></a>
## [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
<a name="0.8.59"></a> <a name="0.8.59"></a>
## [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) ## [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)

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "@ali/lowcode-rax-simulator-renderer", "name": "@ali/lowcode-rax-simulator-renderer",
"version": "0.8.59", "version": "0.8.60",
"description": "rax simulator renderer for alibaba lowcode designer", "description": "rax simulator renderer for alibaba lowcode designer",
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
@ -14,7 +14,7 @@
"test:snapshot": "ava --update-snapshots" "test:snapshot": "ava --update-snapshots"
}, },
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-rax-renderer": "^0.1.7", "@ali/lowcode-rax-renderer": "^0.1.7",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="0.8.61"></a>
## [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
<a name="0.8.60"></a> <a name="0.8.60"></a>
## [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) ## [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)

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "@ali/lowcode-react-simulator-renderer", "name": "@ali/lowcode-react-simulator-renderer",
"version": "0.8.60", "version": "0.8.61",
"description": "react simulator renderer for alibaba lowcode designer", "description": "react simulator renderer for alibaba lowcode designer",
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
@ -13,7 +13,7 @@
"test:snapshot": "ava --update-snapshots" "test:snapshot": "ava --update-snapshots"
}, },
"dependencies": { "dependencies": {
"@ali/lowcode-designer": "^0.9.54", "@ali/lowcode-designer": "^0.9.55",
"@ali/lowcode-react-renderer": "^0.8.20", "@ali/lowcode-react-renderer": "^0.8.20",
"@ali/lowcode-types": "^0.8.19", "@ali/lowcode-types": "^0.8.19",
"@ali/lowcode-utils": "^0.8.22", "@ali/lowcode-utils": "^0.8.22",