bfg-common 1.3.270 → 1.3.272

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.
@@ -13,15 +13,15 @@ export interface UI_I_ContextMenu {
13
13
  titleIconClassName: string
14
14
  items: UI_I_ContextMenuItem[]
15
15
  }
16
- export interface UI_I_ContextMenuItem {
16
+ export interface UI_I_ContextMenuItem<T = string> {
17
17
  name: string
18
- actionType: string
18
+ actionType: T | ''
19
19
  iconClassName: string
20
+ items: UI_I_ContextMenuItem<T>[]
20
21
  shortcut?: string
21
22
  hasBorderTop?: boolean
22
23
  isHeader?: boolean
23
24
  disabled?: boolean
24
25
  isShowItems?: boolean
25
- items: UI_I_ContextMenuItem[]
26
26
  testId?: string
27
27
  }
@@ -52,7 +52,7 @@
52
52
  popup-class="diagram-actions__popup"
53
53
  :close-after-click="true"
54
54
  :items="networkPopupFields"
55
- :test-id="`network-${props.network.title}-toggle`"
55
+ :test-id="`network-${props.network.title}`"
56
56
  @change="(value: string) => onShowModal(value, dataForSelectedNetwork)"
57
57
  />
58
58
  </div>