@logicflow/core
Advanced tools
Comparing version 0.4.15 to 0.5.0
@@ -6,2 +6,21 @@ # Change Log | ||
# [0.5.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.5.0) (2021-06-18) | ||
### Bug Fixes | ||
* [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd)) | ||
* use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1)) | ||
* use pluginName replace name ([8bf1a08](https://github.com/towersxu/logicflow/commit/8bf1a0892e61f619204b7b621902f36f9ad3e204)) | ||
### Features | ||
* add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3)) | ||
* text:update event emit element data ([36f1f2a](https://github.com/towersxu/logicflow/commit/36f1f2a5d57c70dada007a7ec92782d994528e5e)) | ||
## [0.4.15](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.15) (2021-06-17) | ||
@@ -8,0 +27,0 @@ |
{ | ||
"name": "@logicflow/core", | ||
"version": "0.4.15", | ||
"version": "0.5.0", | ||
"description": "LogicFlow core, to quickly build flowchart editor", | ||
@@ -84,3 +84,3 @@ "main": "dist/logic-flow.js", | ||
], | ||
"gitHead": "83d2d7bf9e116b60d1cdce27c9ff662b7f0fe014" | ||
"gitHead": "9c5f0de27145b1084225cc3dc115ffc365804905" | ||
} |
@@ -18,2 +18,3 @@ import { h, Component } from 'preact'; | ||
__prevText: { | ||
type: string; | ||
text: string; | ||
@@ -20,0 +21,0 @@ id: string; |
@@ -238,3 +238,3 @@ import { h } from 'preact'; | ||
export interface Extension { | ||
name: string; | ||
pluginName: string; | ||
install?: (lf: LogicFlow, LogicFlow: LogicFlowContractor) => void; | ||
@@ -241,0 +241,0 @@ render?: ComponentRender; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
576763
3889