bfg-common 1.2.28 → 1.2.30

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.
@@ -31,7 +31,7 @@
31
31
  </template>
32
32
  <template #content>{{ apiError }}</template>
33
33
  </atoms-tooltip-error>
34
- <div id="bus-field-help-icon" class="content-signpost relative">
34
+ <div :id="helpId" class="content-signpost relative">
35
35
  <atoms-the-icon
36
36
  class="icon-show-help"
37
37
  fill="#0072a3"
@@ -44,7 +44,7 @@
44
44
  <atoms-tooltip-signpost
45
45
  v-if="isShowHelp"
46
46
  test-id="help-signpost"
47
- elem-id="bus-field-help-icon"
47
+ :elem-id="helpId"
48
48
  @hide="isShowHelp = false"
49
49
  >
50
50
  <p>
@@ -79,6 +79,8 @@ const emits = defineEmits<{
79
79
  (event: 'remove-error-by-title', value: string): void
80
80
  }>()
81
81
 
82
+ const helpId = ref<string>(`bus-field-help-icon${useUniqueId()}`)
83
+
82
84
  const busOptions = ref<UI_I_OptionItem[]>(busOptionsFunc(localization.value))
83
85
 
84
86
  const busLocal = computed<string>({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.28",
4
+ "version": "1.2.30",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",