@zcomponent/html 1.3.2 → 1.3.3

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.
@@ -128,7 +128,8 @@ export class ZHTMLElement extends Component {
128
128
  }
129
129
  _attachEvent(evt, evtName) {
130
130
  const handler = (e) => {
131
- evt.emit(e);
131
+ if (this.enabledResolved.value)
132
+ evt.emit(e);
132
133
  };
133
134
  evt.hasListeners.addListener(b => {
134
135
  if (b)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zcomponent/html",
3
- "version": "1.3.2",
4
- "description": "",
3
+ "version": "1.3.3",
4
+ "description": "Mattercraft support for HTML",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "directories": {