@webitel/ui-sdk 3.1.68 → 3.1.70

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": "@webitel/ui-sdk",
3
- "version": "3.1.68",
3
+ "version": "3.1.70",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -132,7 +132,7 @@ const { reloadSortable } = useDestroyableSortable(sortableWrapper, {
132
132
  },
133
133
  });
134
134
 
135
- watch(v$, () => emit('update:validation', { invalid: isInvalidForm.value, v$ }));
135
+ watch(v$, () => emit('update:validation', { invalid: isInvalidForm.value, v$: v$.value }));
136
136
  watchEffect(initResult);
137
137
 
138
138
  onMounted(() => {
@@ -40,9 +40,4 @@ export default class QueryFiltersStoreModule extends BaseStoreModule {
40
40
  });
41
41
  },
42
42
  };
43
-
44
- constructor({ state = {} } = {}) {
45
- super();
46
- this.state = state;
47
- }
48
43
  }