bfg-common 1.4.704 → 1.4.705

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.
@@ -88,5 +88,8 @@ onUnmounted(() => {
88
88
  color: var(--title-form-first-color);
89
89
  margin-bottom: 22px;
90
90
  }
91
+ :deep(.data-table-header) {
92
+ z-index: 1050 !important; // TODO надо удалить потом (clr style)
93
+ }
91
94
  }
92
95
  </style>
@@ -95,7 +95,7 @@ const { $store }: any = useNuxtApp()
95
95
 
96
96
  const normalizedTaskDetails = computed<UI_I_DataTableBodyData[]>(() => {
97
97
  return props.data.filter((column: UI_I_DataTableBodyData) =>
98
- [0, 1, 2, 4, 9].includes(column.col)
98
+ ['col0', 'col1', 'col2', 'col4', 'col9'].includes(column.col as string)
99
99
  ) // Фильтр по номерам колонок
100
100
  })
101
101
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.704",
4
+ "version": "1.4.705",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",