bfg-common 1.3.249 → 1.3.251

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.
@@ -448,7 +448,7 @@
448
448
  </div>
449
449
 
450
450
  <atoms-table-data-grid-pagination
451
- test-id="props.testId"
451
+ :test-id="props.testId"
452
452
  :page-size="props.pageSize"
453
453
  :page="props.page"
454
454
  :options="mergeOptions"
@@ -12,7 +12,9 @@ export const defaultColumnKeys = (
12
12
  ): UI_I_ColumnKey[] => {
13
13
  const result: UI_I_ColumnKey[] = []
14
14
  items.forEach((item, i) => {
15
- result.push(constructColumnKey(`col${i}`, item[0], item[1]))
15
+ result.push(
16
+ constructColumnKey(`col${i}`, item[0], item[1], `show-column-${item[3]}`)
17
+ )
16
18
  })
17
19
  return result
18
20
  }
@@ -22,7 +24,17 @@ export const defaultHeadItems = (
22
24
  ): UI_I_HeadItem[] => {
23
25
  const result: UI_I_HeadItem[] = []
24
26
  items.forEach((item, i) => {
25
- result.push(constructHeadItem(`col${i}`, item[0], item[3], false, item[2]))
27
+ result.push(
28
+ constructHeadItem(
29
+ `col${i}`,
30
+ item[0],
31
+ item[3],
32
+ false,
33
+ item[2],
34
+ undefined,
35
+ item[3]
36
+ )
37
+ )
26
38
  })
27
39
  return result
28
40
  }
@@ -51,6 +51,7 @@
51
51
  popup-class="diagram-main-actions__popup"
52
52
  :close-after-click="true"
53
53
  :items="switchMainNavigation"
54
+ test-id="diagram-main-actions"
54
55
  @change="onShowModal"
55
56
  />
56
57
  </div>
@@ -82,6 +82,7 @@ const collapsedItems = computed<UI_I_CollapseNavItem[]>(() => {
82
82
  value: item.type,
83
83
  disabled: item.disabled,
84
84
  uploaded: item.uploaded,
85
+ testId: item.testId,
85
86
  }
86
87
  })
87
88
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.249",
4
+ "version": "1.3.251",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",