@logicflow/extension 2.1.4 → 2.1.6

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.
Files changed (37) hide show
  1. package/.turbo/turbo-build.log +7 -7
  2. package/CHANGELOG.md +23 -0
  3. package/dist/index.min.js +1 -1
  4. package/dist/index.min.js.map +1 -1
  5. package/es/bpmn-adapter/index.d.ts +84 -1
  6. package/es/bpmn-adapter/index.js +235 -12
  7. package/es/bpmn-adapter/json2xml.d.ts +10 -1
  8. package/es/bpmn-adapter/json2xml.js +28 -4
  9. package/es/bpmn-adapter/xml2json.js +2 -7
  10. package/es/components/mini-map/index.js +9 -7
  11. package/es/components/selection-select/index.d.ts +1 -0
  12. package/es/components/selection-select/index.js +11 -5
  13. package/es/tools/proximity-connect/index.d.ts +8 -0
  14. package/es/tools/proximity-connect/index.js +9 -4
  15. package/es/tools/snapshot/index.d.ts +8 -0
  16. package/es/tools/snapshot/index.js +2 -2
  17. package/lib/bpmn-adapter/index.d.ts +84 -1
  18. package/lib/bpmn-adapter/index.js +235 -12
  19. package/lib/bpmn-adapter/json2xml.d.ts +10 -1
  20. package/lib/bpmn-adapter/json2xml.js +29 -4
  21. package/lib/bpmn-adapter/xml2json.js +2 -7
  22. package/lib/components/mini-map/index.js +9 -7
  23. package/lib/components/selection-select/index.d.ts +1 -0
  24. package/lib/components/selection-select/index.js +11 -5
  25. package/lib/tools/proximity-connect/index.d.ts +8 -0
  26. package/lib/tools/proximity-connect/index.js +9 -4
  27. package/lib/tools/snapshot/index.d.ts +8 -0
  28. package/lib/tools/snapshot/index.js +2 -2
  29. package/package.json +5 -5
  30. package/src/bpmn-adapter/index.ts +256 -17
  31. package/src/bpmn-adapter/json2xml.ts +30 -4
  32. package/src/bpmn-adapter/xml2json.ts +2 -7
  33. package/src/components/mini-map/index.ts +11 -11
  34. package/src/components/selection-select/index.ts +11 -8
  35. package/src/tools/proximity-connect/index.ts +14 -4
  36. package/src/tools/snapshot/index.ts +10 -2
  37. package/stats.html +1 -1
@@ -1,11 +1,11 @@
1
1
 
2
- > @logicflow/extension@2.1.4 prebuild /Users/didi/Desktop/github/LogicFlow/packages/extension
2
+ > @logicflow/extension@2.1.5 prebuild /Users/didi/Desktop/github/LogicFlow/packages/extension
3
3
  > rss
4
4
 
5
5
  > [prebuild] run-s -s clean:build
6
6
  > [clean:build] rimraf dist es lib
7
7
 
8
- > @logicflow/extension@2.1.4 build /Users/didi/Desktop/github/LogicFlow/packages/extension
8
+ > @logicflow/extension@2.1.5 build /Users/didi/Desktop/github/LogicFlow/packages/extension
9
9
  > run-p -s build:dev build:umd
10
10
 
11
11
  
@@ -18,7 +18,7 @@ Browserslist: caniuse-lite is outdated. Please run:
18
18
  (!) The emitted file "index.css" overwrites a previously emitted file of the same name.
19
19
  (!) The emitted file "index.css" overwrites a previously emitted file of the same name.
20
20
  (!) The emitted file "index.css" overwrites a previously emitted file of the same name.
21
- created dist/index.css, lib/index.css, lib/style/index.css, es/index.css, es/style/index.css in 1.5s
21
+ created dist/index.css, lib/index.css, lib/style/index.css, es/index.css, es/style/index.css in 2.8s
22
22
  
23
23
  ./src/index.ts → dist/index.min.js...
24
24
  +----------------------------------------------------+
@@ -30,9 +30,9 @@ Browserslist: caniuse-lite is outdated. Please run:
30
30
  |  @logicflow/vue-node-registry: VueNodeRegistry |
31
31
  | |
32
32
  | Destination: dist/index.min.js |
33
- | Bundle Size: 464.14 KB |
34
- | Minified Size: 462.34 KB |
35
- | GZipped Size: 132.36 KB |
33
+ | Bundle Size: 465.17 KB |
34
+ | Minified Size: 463.37 KB |
35
+ | GZipped Size: 132.75 KB |
36
36
  | |
37
37
  +----------------------------------------------------+
38
- created dist/index.min.js in 8.3s
38
+ created dist/index.min.js in 12s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: 修复issue反馈的问题
8
+ - fix: 修复extension包引入vue包问题 fix #2277
9
+ - Updated dependencies
10
+ - @logicflow/core@2.1.4
11
+ - @logicflow/vue-node-registry@1.1.5
12
+
13
+ ## 2.1.5
14
+
15
+ ### Patch Changes
16
+
17
+ - fix: 修复issue反馈的问题
18
+ - feat: 修改小地图 lf 实例的创建与销毁时机 #2261
19
+ - fix: bpmn格式数据兼容特殊字符 #2269
20
+ - feat: 渐进连线的连线模式支持配置 #2175
21
+ - feat: 画布导出的安全系数和安全边距支持配置 #2213
22
+ - Updated dependencies
23
+ - @logicflow/core@2.1.3
24
+ - @logicflow/vue-node-registry@1.1.4
25
+
3
26
  ## 2.1.4
4
27
 
5
28
  ### Patch Changes