bfg-common 1.4.7 → 1.4.9

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.
Files changed (54) hide show
  1. package/assets/localization/local_be.json +3 -0
  2. package/assets/localization/local_en.json +3 -0
  3. package/assets/localization/local_hy.json +3 -0
  4. package/assets/localization/local_kk.json +3 -0
  5. package/assets/localization/local_ru.json +3 -0
  6. package/assets/localization/local_zh.json +2566 -2563
  7. package/components/atoms/modal/bySteps/BySteps.vue +253 -253
  8. package/components/common/browse/blocks/Title.vue +91 -91
  9. package/components/common/browse/blocks/info/Date.vue +21 -21
  10. package/components/common/context/recursion/Recursion.vue +86 -86
  11. package/components/common/context/recursion/RecursionNew.vue +198 -198
  12. package/components/common/context/recursion/RecursionOld.vue +212 -212
  13. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +1 -1
  14. package/components/common/pages/hardwareHealth/HardwareHealth.vue +45 -62
  15. package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +332 -0
  16. package/components/common/pages/hardwareHealth/historyTestimony/lib/models/interfaces.ts +9 -0
  17. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +375 -0
  18. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +469 -0
  19. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/Notification.vue +30 -0
  20. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +157 -0
  21. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +81 -0
  22. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +25 -0
  23. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +89 -0
  24. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +174 -0
  25. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +89 -0
  26. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/types.ts +5 -0
  27. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +64 -0
  28. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/Form.vue +539 -0
  29. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +115 -0
  30. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/config/optionsMetrics.ts +17 -0
  31. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/interfaces.ts +15 -0
  32. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/types.ts +1 -0
  33. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +31 -0
  34. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +78 -0
  35. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/models/interfaces.ts +9 -0
  36. package/components/common/pages/hardwareHealth/tableView/TableView.vue +4 -10
  37. package/components/common/pages/hardwareHealth/tableView/lib/config/historyTestimonyTable.ts +128 -0
  38. package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +7 -11
  39. package/components/common/pages/hardwareHealth/tableView/lib/config/tableKeys.ts +6 -7
  40. package/components/common/pages/hardwareHealth/tableView/lib/models/interfaces.ts +2 -0
  41. package/components/common/pages/hardwareHealth/tableView/lib/models/types.ts +9 -4
  42. package/components/common/split/horizontal/HorizontalNew.vue +321 -321
  43. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuHotPlug.vue +52 -52
  44. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +99 -99
  45. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +85 -85
  46. package/components/common/wizards/datastore/add/Add.vue +437 -437
  47. package/composables/productNameLocal.ts +30 -30
  48. package/lib/models/interfaces.ts +1 -0
  49. package/lib/models/types.ts +1 -0
  50. package/package.json +1 -1
  51. package/plugins/recursion.ts +293 -293
  52. package/public/spice-console/lib/images/bitmap.js +203 -203
  53. package/store/tasks/mappers/recentTasks.ts +45 -45
  54. package/components/common/pages/hardwareHealth/Graph.vue +0 -84
@@ -2535,6 +2535,9 @@
2535
2535
  "inventory": {
2536
2536
  "activeMemory": "Актыўная памяць"
2537
2537
  },
2538
+ "inventoryMonitor": {
2539
+ "temperature": "Тэмпература"
2540
+ },
2538
2541
  "inventoryTabs": {
2539
2542
  "summary": "Рэзюмэ",
2540
2543
  "monitor": "Манітор",
@@ -2539,6 +2539,9 @@
2539
2539
  "inventory": {
2540
2540
  "activeMemory": "Active Memory"
2541
2541
  },
2542
+ "inventoryMonitor": {
2543
+ "temperature": "Temperature"
2544
+ },
2542
2545
  "inventoryTabs": {
2543
2546
  "summary": "Summary",
2544
2547
  "monitor": "Monitor",
@@ -2539,6 +2539,9 @@
2539
2539
  "inventory": {
2540
2540
  "activeMemory": "Ակտիվ հիշողություն"
2541
2541
  },
2542
+ "inventoryMonitor": {
2543
+ "temperature": "Ջերմաստիճանը"
2544
+ },
2542
2545
  "inventoryTabs": {
2543
2546
  "summary": "Ամփոփում",
2544
2547
  "monitor": "Մոնիտոր",
@@ -2538,6 +2538,9 @@
2538
2538
  "inventory": {
2539
2539
  "activeMemory": "Белсенді есте сақтау"
2540
2540
  },
2541
+ "inventoryMonitor": {
2542
+ "temperature": "Температура"
2543
+ },
2541
2544
  "inventoryTabs": {
2542
2545
  "summary": "Түйіндеме",
2543
2546
  "monitor": "Монитор",
@@ -2541,6 +2541,9 @@
2541
2541
  "inventory": {
2542
2542
  "activeMemory": "Активная память"
2543
2543
  },
2544
+ "inventoryMonitor": {
2545
+ "temperature": "Температура"
2546
+ },
2544
2547
  "inventoryTabs": {
2545
2548
  "summary": "Сводка",
2546
2549
  "monitor": "Монитор",