@knotx/core 0.5.6 → 0.5.8

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/dist/index.cjs CHANGED
@@ -124,7 +124,7 @@ class InteractionManager {
124
124
  }
125
125
  return interaction;
126
126
  }, null);
127
- this.interactions.values().forEach((interaction) => {
127
+ Array.from(this.interactions.values()).forEach((interaction) => {
128
128
  interaction.active = interaction === activeInteraction;
129
129
  });
130
130
  }
package/dist/index.js CHANGED
@@ -124,7 +124,7 @@ class InteractionManager {
124
124
  }
125
125
  return interaction;
126
126
  }, null);
127
- this.interactions.values().forEach((interaction) => {
127
+ Array.from(this.interactions.values()).forEach((interaction) => {
128
128
  interaction.active = interaction === activeInteraction;
129
129
  });
130
130
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knotx/core",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "description": "Core for Knotx",
5
5
  "author": "boenfu",
6
6
  "license": "MIT",
@@ -46,14 +46,14 @@
46
46
  "jsonschema": "^1.5.0",
47
47
  "lodash-es": "^4.17.21",
48
48
  "rxjs": "^7.8.1",
49
- "@knotx/data": "0.5.6",
50
- "@knotx/utils": "0.5.6"
49
+ "@knotx/data": "0.5.8",
50
+ "@knotx/utils": "0.5.8"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/lodash-es": "^4.17.12",
54
- "@knotx/build-config": "0.5.6",
55
- "@knotx/eslint-config": "0.5.6",
56
- "@knotx/typescript-config": "0.5.6"
54
+ "@knotx/build-config": "0.5.8",
55
+ "@knotx/eslint-config": "0.5.8",
56
+ "@knotx/typescript-config": "0.5.8"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "unbuild",