@logicflow/vue-node-registry 0.0.1-beta.5 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +19 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @logicflow/vue-node-registry@0.0
|
|
2
|
+
> @logicflow/vue-node-registry@1.0.0 prebuild /Users/r0ger1tlearn/WorkSpace/Github/DiDi/logicflow/packages/vue-node-registry
|
|
3
3
|
> rss
|
|
4
4
|
|
|
5
5
|
> [31m[prebuild][39m run-s -s clean:build
|
|
6
6
|
> [36m[clean:build][39m rimraf dist es lib
|
|
7
7
|
|
|
8
|
-
> @logicflow/vue-node-registry@0.0
|
|
8
|
+
> @logicflow/vue-node-registry@1.0.0 build /Users/r0ger1tlearn/WorkSpace/Github/DiDi/logicflow/packages/vue-node-registry
|
|
9
9
|
> rss
|
|
10
10
|
|
|
11
11
|
> [34m[build][39m run-p -s build:dev build:umd
|
|
12
|
-
> [34m[build:dev][39m pnpm run --if-present build:less && run-p -s build:cjs build:esm
|
|
13
12
|
> [34m[build:umd][39m pnpm run --if-present build:less && rollup -c ../../rollup.config.js --bundleConfigAsCjs
|
|
13
|
+
> [34m[build:dev][39m pnpm run --if-present build:less && run-p -s build:cjs build:esm
|
|
14
14
|
> [34m[build:less][39m ./scripts/build-less
|
|
15
15
|
> [34m[build:less][39m ./scripts/build-less
|
|
16
16
|
[36m
|
|
@@ -34,4 +34,4 @@
|
|
|
34
34
|
[1m[33m(!) Broken sourcemap[39m[22m
|
|
35
35
|
[90mhttps://rollupjs.org/troubleshooting/#warning-sourcemap-is-likely-to-be-incorrect[39m
|
|
36
36
|
Plugins that transform code (such as "terser") should generate accompanying sourcemaps.
|
|
37
|
-
[32mcreated [1mdist/index.min.js[22m in [
|
|
37
|
+
[32mcreated [1mdist/index.min.js[22m in [1m4.8s[22m[39m
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @logicflow/vue-node-registry
|
|
2
|
+
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Release 2.0 New Version 🎉🎉🎉🎉
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @logicflow/core@2.0.0
|
|
10
|
+
|
|
11
|
+
- feat: 开发 vue-node-registry 包用于用户自定义 vue 节点
|
|
12
|
+
|
|
13
|
+
- 通过监听 properties 变化的事件,触发节点的更新
|
|
14
|
+
- 利用 Teleport 将组件内部的一部分模板传送到组件的 DOM 结构外层的位置去
|
|
15
|
+
- 修复 vue-node-registry 包在 vue2 项目中渲染失效的问题
|
|
16
|
+
- 更新 extension 包的 package.json
|
|
17
|
+
- 修复 vue-node-registry 渲染顺序,先 appendChild,再 new Vue
|
|
18
|
+
- 修复渲染自定义节点 new Vue2 实例时未传 el 的问题
|
|
19
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logicflow/vue-node-registry",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "LogicFlow Vue Component Node Registry",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@vue/composition-api": "^1.0.0-rc.10",
|
|
22
22
|
"vue": "^2.0.0 || >=3.0.0",
|
|
23
|
-
"@logicflow/core": "2.0.0
|
|
23
|
+
"@logicflow/core": "2.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependenciesMeta": {
|
|
26
26
|
"@vue/composition-api": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"vue": "^3.0.0",
|
|
32
|
-
"@logicflow/core": "2.0.0
|
|
32
|
+
"@logicflow/core": "2.0.0"
|
|
33
33
|
},
|
|
34
34
|
"author": {
|
|
35
35
|
"name": "boyongjiong",
|