ohzi-core 11.2.3 → 11.3.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ohzi-core",
3
3
  "sideEffects": false,
4
- "version": "11.2.3",
4
+ "version": "11.3.0",
5
5
  "description": "OHZI Interactive Core Library",
6
6
  "source": "src/index.js",
7
7
  "module": "build/index.module.js",
@@ -1,3 +1,4 @@
1
+ import { WorkerToMain } from '../view_components/WorkerToMain';
1
2
 
2
3
  class ActionEvent
3
4
  {
@@ -10,7 +11,7 @@ class ActionEvent
10
11
 
11
12
  trigger()
12
13
  {
13
- ViewApi.application[this.name][this.method](...this.args.split(','));
14
+ WorkerToMain.push(`${this.name}.${this.method}`, this.args.split(','));
14
15
  }
15
16
  }
16
17