@arrai-innovations/reactive-helpers 4.1.2 → 4.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrai-innovations/reactive-helpers",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "VueJS 3 utility composition functions to help manipulate objects and lists.",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -103,7 +103,7 @@ export function useListCalculated({
103
103
  state.objects = toRef(parentState, "objects");
104
104
  state.objectsInOrder = toRef(parentState, "objectsInOrder");
105
105
  state[copn] = toRef(state, "calculatedObjectsObjects");
106
- for (let key in passThroughPropertyNames) {
106
+ for (let key of passThroughPropertyNames) {
107
107
  state[key] = toRef(parentState, key);
108
108
  }
109
109
 
@@ -110,7 +110,7 @@ export function useListRelated({
110
110
  state.objects = toRef(parentState, "objects");
111
111
  state.objectsInOrder = toRef(parentState, "objectsInOrder");
112
112
  state[ropn] = toRef(state, "relatedObjectsObjects");
113
- for (let key in passThroughPropertyNames) {
113
+ for (let key of passThroughPropertyNames) {
114
114
  state[key] = toRef(parentState, key);
115
115
  }
116
116
 
@@ -155,7 +155,7 @@ export function useListSubscription({
155
155
  state.objects = toRef(parentState, "objects");
156
156
  state.order = toRef(parentState, "order");
157
157
  state.objectsInOrder = toRef(parentState, "objectsInOrder");
158
- for (let key in passThroughPropertyNames) {
158
+ for (let key of passThroughPropertyNames) {
159
159
  state[key] = toRef(parentState, key);
160
160
  }
161
161
 
@@ -42,7 +42,7 @@ export function useObjectCalculated({
42
42
  state.deleted = toRef(parentState, "deleted");
43
43
  state.object = toRef(parentState, "object");
44
44
  state[copn] = toRef(state, "calculatedObjectObjects");
45
- for (let key in passThroughPropertyNames) {
45
+ for (let key of passThroughPropertyNames) {
46
46
  state[key] = toRef(parentState, key);
47
47
  }
48
48
 
@@ -41,7 +41,7 @@ export function useObjectRelated({
41
41
  state.deleted = toRef(parentState, "deleted");
42
42
  state.object = toRef(parentState, "object");
43
43
  state[ropn] = toRef(state, "relatedObjectObjects");
44
- for (let key in passThroughPropertyNames) {
44
+ for (let key of passThroughPropertyNames) {
45
45
  state[key] = toRef(parentState, key);
46
46
  }
47
47