bfg-common 1.3.244 → 1.3.245

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.
@@ -297,7 +297,7 @@
297
297
  <div class="flex-align-center">
298
298
  <button
299
299
  :id="`${props.testId}-toggle-icon-${key}`"
300
- :date-id="`${item[0].testId}-toggle-row-button`"
300
+ :data-id="`${item[0].testId}-toggle-row-button`"
301
301
  class="datagrid-expandable-caret-button reset-btn"
302
302
  @click="toggle(key)"
303
303
  >
@@ -21,7 +21,7 @@
21
21
  >
22
22
  <span
23
23
  class="context-link"
24
- :data-id="`${props.testId}-context-link`"
24
+ :data-id="`${item.testId}-context-link`"
25
25
  @mousedown="selectItem(item)"
26
26
  >
27
27
  <span :class="['context-icon', item.iconClassName]" />
@@ -23,4 +23,5 @@ export interface UI_I_ContextMenuItem {
23
23
  disabled?: boolean
24
24
  isShowItems?: boolean
25
25
  items: UI_I_ContextMenuItem[]
26
+ testId?: string
26
27
  }
@@ -45,7 +45,9 @@ export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
45
45
  const result: UI_I_HeadItem[] = []
46
46
  getItems(localization).forEach((item, i) => {
47
47
  const col = `col${i + 1}`
48
- result.push(constructHeadItem(col, item[0], item[3], false, item[2]))
48
+ result.push(
49
+ constructHeadItem(col, item[0], item[3], false, item[2], '', item[3])
50
+ )
49
51
  })
50
52
  return result
51
53
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.244",
4
+ "version": "1.3.245",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",