moddle-xml
Advanced tools
Comparing version 7.2.2 to 7.2.3
@@ -9,2 +9,8 @@ # Changelog | ||
## 7.2.3 | ||
* `FIX`: correctly serialize extension attributes along with typed elements | ||
## 7.2.0 | ||
* `FEAT`: warn on invalid attributes under well-known namespaces ([#32](https://github.com/bpmn-io/moddle-xml/issues/32)) | ||
@@ -11,0 +17,0 @@ |
@@ -765,3 +765,3 @@ import { | ||
TypeSerializer.prototype.isLocalNs = function(ns) { | ||
return ns.uri === this.typeNs.uri; | ||
return ns.uri === (this.typeNs || this.ns).uri; | ||
}; | ||
@@ -768,0 +768,0 @@ |
{ | ||
"name": "moddle-xml", | ||
"version": "7.2.2", | ||
"version": "7.2.3", | ||
"description": "XML import/export for documents described with moddle", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -0,1 +1,4 @@ | ||
> As of version `7.0.0` this library exposes ES modules. Use [esm](https://github.com/standard-things/esm) or a ES module aware transpiler such as Webpack, Rollup or Browserify + babelify to consume it. | ||
# moddle-xml | ||
@@ -21,3 +24,3 @@ | ||
``` | ||
```javascript | ||
import Moddle from 'moddle'; | ||
@@ -98,7 +101,4 @@ import { | ||
> __Note:__ As of version `7.0.0` this library exposes ES modules. Use [esm](https://github.com/standard-things/esm) or a ES module aware transpiler such as Webpack, Rollup or Browserify + babelify to consume it. | ||
## License | ||
MIT |
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
43909