update 0.15.0
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
## 0.15.0
|
||||||
|
|
||||||
|
废弃storechanger与iframe容器。
|
||||||
|
|
||||||
|
增加函数配置用以正确卸载。
|
||||||
|
|
||||||
|
修改弹窗等逻辑使其正确保存预览。
|
||||||
|
|
||||||
## 0.14.1
|
## 0.14.1
|
||||||
|
|
||||||
新增数据源左侧面板设置。
|
新增数据源左侧面板设置。
|
||||||
|
@@ -32,6 +32,8 @@ dooringx-lib 在运行时维护一套数据流,主要分为json数据部分,
|
|||||||
|
|
||||||
## 文档 | Doc
|
## 文档 | Doc
|
||||||
|
|
||||||
|
当前版本变化较大,请等待文档完善。
|
||||||
|
|
||||||
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
||||||
|
|
||||||
[阅读文档了解更多信息](https://h5-dooring.github.io/dooringx/).
|
[阅读文档了解更多信息](https://h5-dooring.github.io/dooringx/).
|
||||||
|
@@ -5,6 +5,10 @@ nav:
|
|||||||
title: Change log
|
title: Change log
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 0.15.0
|
||||||
|
Discard storechanger and iframe containers.
|
||||||
|
Add function configuration to unload correctly.
|
||||||
|
Modify the pop-up logic to save the preview correctly.
|
||||||
## 0.14.1
|
## 0.14.1
|
||||||
Add data source left panel settings.
|
Add data source left panel settings.
|
||||||
## 0.14.0
|
## 0.14.0
|
||||||
|
@@ -5,6 +5,14 @@ nav:
|
|||||||
title: 变更日志
|
title: 变更日志
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 0.15.0
|
||||||
|
|
||||||
|
废弃storechanger与iframe容器。
|
||||||
|
|
||||||
|
增加函数配置用以正确卸载。
|
||||||
|
|
||||||
|
修改弹窗等逻辑使其正确保存预览。
|
||||||
|
|
||||||
## 0.14.1
|
## 0.14.1
|
||||||
|
|
||||||
新增数据源左侧面板设置。
|
新增数据源左侧面板设置。
|
||||||
|
@@ -32,6 +32,8 @@ dooringx-lib 在运行时维护一套数据流,主要分为json数据部分,
|
|||||||
|
|
||||||
## 文档 | Doc
|
## 文档 | Doc
|
||||||
|
|
||||||
|
当前版本变化较大,请等待文档完善。
|
||||||
|
|
||||||
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
||||||
|
|
||||||
[阅读文档了解更多信息](https://h5-dooring.github.io/dooringx/).
|
[阅读文档了解更多信息](https://h5-dooring.github.io/dooringx/).
|
||||||
@@ -155,6 +157,4 @@ MIT
|
|||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
|
|
||||||
重构弹窗
|
|
||||||
重构事件
|
|
||||||
完善文档
|
完善文档
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.14.1",
|
"version": "0.15.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/dooringx-lib.esm.js",
|
"module": "dist/dooringx-lib.esm.js",
|
||||||
|
@@ -140,7 +140,7 @@ export class AnimateFactory {
|
|||||||
// 先判断global的位置
|
// 先判断global的位置
|
||||||
const store = config.getStore();
|
const store = config.getStore();
|
||||||
let data = store.getData();
|
let data = store.getData();
|
||||||
const copy: IMainStoreData = deepCopy(data);
|
const copy = deepCopy(data);
|
||||||
const originGlobal = copy.globalState as IMainStoreData['globalState'];
|
const originGlobal = copy.globalState as IMainStoreData['globalState'];
|
||||||
originGlobal.customAnimate = [...this.customAnimateName];
|
originGlobal.customAnimate = [...this.customAnimateName];
|
||||||
store.setData(copy);
|
store.setData(copy);
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dooringx-plugin-template",
|
"name": "dooringx-plugin-template",
|
||||||
"version": "0.14.1",
|
"version": "0.15.0",
|
||||||
"description": "> TODO: description",
|
"description": "> TODO: description",
|
||||||
"author": "yehuozhili <673632758@qq.com>",
|
"author": "yehuozhili <673632758@qq.com>",
|
||||||
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
"@rollup/plugin-node-resolve": "^13.0.4",
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
||||||
"@rollup/plugin-url": "^6.1.0",
|
"@rollup/plugin-url": "^6.1.0",
|
||||||
"@svgr/rollup": "^5.5.0",
|
"@svgr/rollup": "^5.5.0",
|
||||||
"dooringx-lib": "^0.14.1",
|
"dooringx-lib": "^0.15.0",
|
||||||
"postcss": "^8.3.6",
|
"postcss": "^8.3.6",
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.4",
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
||||||
"rollup-plugin-postcss": "^4.0.1",
|
"rollup-plugin-postcss": "^4.0.1",
|
||||||
|
Reference in New Issue
Block a user