@webitel/ui-sdk 3.1.27 → 3.1.28

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.27",
3
+ "version": "3.1.28",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -31,7 +31,7 @@
31
31
  <script setup>
32
32
  import cloneDeep from 'lodash/cloneDeep';
33
33
  import {
34
- watch, watchEffect, ref, computed, onMounted,
34
+ watch, watchEffect, ref, computed,
35
35
  } from 'vue';
36
36
  import { useVuelidate } from '@vuelidate/core';
37
37
  import { useDestroyableSortable } from '../composables/useDestroyableSortable';
@@ -60,7 +60,6 @@ const emit = defineEmits([
60
60
  'update:questions',
61
61
  'update:result',
62
62
  'update:validation',
63
- 'mounted',
64
63
  ]);
65
64
 
66
65
  const v$ = useVuelidate();
@@ -124,8 +123,6 @@ const { reloadSortable } = useDestroyableSortable(sortableWrapper, {
124
123
 
125
124
  watch(v$, () => emit('update:validation', v$));
126
125
  watchEffect(initResult);
127
-
128
- onMounted(() => emit('mounted'));
129
126
  </script>
130
127
 
131
128
  <style lang="scss" scoped>