bfg-common 1.5.531 → 1.5.533

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.
@@ -14,7 +14,7 @@
14
14
  :compatibility="compatibilityText"
15
15
  @select-node="onSelectNode"
16
16
  @show-nodes="onShowNodes"
17
- @hide-alert="(e) => emits('hide-alert', e)"
17
+ @hide-alert="emits('hide-alert')"
18
18
  />
19
19
  </template>
20
20
 
@@ -31,7 +31,7 @@ const props = defineProps<{
31
31
  alertMessages: string[]
32
32
  }>()
33
33
  const emits = defineEmits<{
34
- (event: 'hide-alert', value: number): void
34
+ (event: 'hide-alert'): void
35
35
  }>()
36
36
 
37
37
  const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
@@ -85,7 +85,7 @@ watch(
85
85
  )
86
86
  return
87
87
  }
88
- onSelectNode(newValue)
88
+ // onSelectNode(newValue)
89
89
  }
90
90
  },
91
91
  { deep: true, immediate: true }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.531",
4
+ "version": "1.5.533",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",