bfg-common 1.5.527 → 1.5.529

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.
@@ -2136,6 +2136,7 @@
2136
2136
  "confirmRemoveVmFromInventory": "Выдаліце выбраную віртуальную машыну з інвентара?",
2137
2137
  "confirmGroupRemoveVmFromInventory": "Выдаліць выбраныя віртуальныя машыны з інвентара?",
2138
2138
  "confirmDeleteVmt": "Выдаліць выбраны шаблон?",
2139
+ "confirmDeleteVmtGroup": "Выдаліць выбраныя шаблоны?",
2139
2140
  "deleteSelectedTemplate": "Выдаліць выбраны шаблон?",
2140
2141
  "integration": "Інтэграцыя",
2141
2142
  "zabbix": "Zabbix",
@@ -2139,6 +2139,7 @@
2139
2139
  "confirmRemoveVmFromInventory": "Remove the selected virtual machine from the inventory?",
2140
2140
  "confirmGroupRemoveVmFromInventory": "Remove the selected virtual machines from the inventory?",
2141
2141
  "confirmDeleteVmt": "Delete the selected template?",
2142
+ "confirmDeleteVmtGroup": "Delete selected templates?",
2142
2143
  "deleteSelectedTemplate": "Delete the selected template?",
2143
2144
  "integration": "Integration",
2144
2145
  "zabbix": "Zabbix",
@@ -2139,6 +2139,7 @@
2139
2139
  "confirmRemoveVmFromInventory": "Հեռացնե՞լ ընտրված վիրտուալ մեքենան գույքագրումից:",
2140
2140
  "confirmGroupRemoveVmFromInventory": "Հեռացնե՞լ ընտրված վիրտուալ մեքենաները ցանկից:",
2141
2141
  "confirmDeleteVmt": "Ջնջե՞լ ընտրված ձևանմուշը:",
2142
+ "confirmDeleteVmtGroup": "Ջնջե՞լ ընտրված ձևանմուշները:",
2142
2143
  "deleteSelectedTemplate": "Ջնջե՞լ ընտրված կաղապարը:",
2143
2144
  "integration": "Ինտեգրում",
2144
2145
  "zabbix": "Zabbix",
@@ -2138,6 +2138,7 @@
2138
2138
  "confirmRemoveVmFromInventory": "Таңдалған виртуалды машинаны түгендеуден жою керек пе?",
2139
2139
  "confirmGroupRemoveVmFromInventory": "Таңдалған виртуалды машиналарды түгендеу тізімінен жою керек пе?",
2140
2140
  "confirmDeleteVmt": "Таңдалған үлгіні жойғыңыз келе ме?",
2141
+ "confirmDeleteVmtGroup": "Таңдалған шаблондарды жою?",
2141
2142
  "deleteSelectedTemplate": "Таңдалған үлгіні өшіргіңіз келе ме?",
2142
2143
  "integration": "Интеграция",
2143
2144
  "zabbix": "Zabbix",
@@ -2138,6 +2138,7 @@
2138
2138
  "confirmRemoveVmFromInventory": "Удалить выбранную виртуальную машину из инвентаря?",
2139
2139
  "confirmGroupRemoveVmFromInventory": "Удалить выбранные виртуальные машины из инвентаря?",
2140
2140
  "confirmDeleteVmt": "Удалить выбранный шаблон?",
2141
+ "confirmDeleteVmtGroup": "Удалить выбранные шаблоны?",
2141
2142
  "deleteSelectedTemplate": "Удалить выбранный шаблон?",
2142
2143
  "integration": "Интеграция",
2143
2144
  "zabbix": "Zabbix",
@@ -2137,6 +2137,7 @@
2137
2137
  "confirmRemoveVmFromInventory": "是否从清单中删除选定的虚拟机?",
2138
2138
  "confirmGroupRemoveVmFromInventory": "要从清单中删除所选虚拟机吗?",
2139
2139
  "confirmDeleteVmt": "是否删除所选模板?",
2140
+ "confirmDeleteVmtGroup": "删除选定的模板?",
2140
2141
  "deleteSelectedTemplate": "要删除所选模板吗?",
2141
2142
  "integration": "一体化",
2142
2143
  "zabbix": "Zabbix",
@@ -2,6 +2,7 @@
2
2
  <div class="relative flex">
3
3
  <div
4
4
  :id="outerWrapper"
5
+ :style="{'--z-index-header-shift': props.zIndexHeaderShift}"
5
6
  :class="[
6
7
  'datagrid-outer-wrapper',
7
8
  {
@@ -578,6 +579,7 @@ const props = withDefaults(
578
579
  isMainFilter?: boolean
579
580
  mainFilterPlaceholder?: string
580
581
  isShowExport?: boolean
582
+ zIndexHeaderShift?: number // Нужен тогда когда в таблице есть еще таблица и headers налезают друг на друга
581
583
  }>(),
582
584
  {
583
585
  columnKeys: undefined,
@@ -589,6 +591,7 @@ const props = withDefaults(
589
591
  withInfo: false,
590
592
  rowAttributeIdName: 'data-id',
591
593
  isShowExport: false,
594
+ zIndexHeaderShift: 1,
592
595
  }
593
596
  )
594
597
 
@@ -1181,7 +1184,7 @@ onUnmounted(() => {
1181
1184
  .datagrid-header {
1182
1185
  position: sticky;
1183
1186
  top: 0;
1184
- z-index: calc(var(--z-sticky) + 1);
1187
+ z-index: calc(var(--z-sticky) + var(--z-index-header-shift));
1185
1188
  width: auto;
1186
1189
 
1187
1190
  .datagrid-row-scrollable {
@@ -9,6 +9,7 @@
9
9
  :total-items="props.totalItems"
10
10
  :total-pages="props.totalPages"
11
11
  :items-per-page="itemsPerPage"
12
+ :z-index-shift="2"
12
13
  :loading="loading"
13
14
  type="radio"
14
15
  class="data-table"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.527",
4
+ "version": "1.5.529",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",