bfg-common 1.5.248 → 1.5.249

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 (35) hide show
  1. package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
  2. package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
  3. package/assets/img/icons/icons-sprite-light-3.svg +227 -227
  4. package/assets/img/icons/icons-sprite-light-5.svg +488 -488
  5. package/assets/localization/local_be.json +1 -7
  6. package/assets/localization/local_en.json +1 -7
  7. package/assets/localization/local_hy.json +1 -7
  8. package/assets/localization/local_kk.json +1 -7
  9. package/assets/localization/local_ru.json +1 -7
  10. package/assets/localization/local_zh.json +1 -7
  11. package/assets/scss/common/theme.scss +0 -16
  12. package/components/atoms/stack/StackBlock.vue +185 -185
  13. package/components/atoms/table/info/lib/models/interfaces.ts +10 -10
  14. package/components/common/backup/storage/actions/add/New.vue +9 -4
  15. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureNew.vue +18 -9
  16. package/components/common/backup/storage/actions/add/steps/typeMode/TypeModeNew.vue +12 -3
  17. package/components/common/layout/theHeader/feedback/new/additionalDetails/Headline.vue +8 -67
  18. package/components/common/layout/theHeader/feedback/new/subtitle/Subtitle.vue +8 -72
  19. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesOld.vue +9 -1
  20. package/components/common/pages/tasks/table/Table.vue +15 -7
  21. package/components/common/pages/tasks/table/expandDetails/ExpandDetails.vue +15 -9
  22. package/components/common/tooltip/Help.vue +132 -0
  23. package/components/common/tooltip/lib/models/types.ts +1 -0
  24. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +10 -99
  25. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +52 -3
  26. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelNew.vue +32 -151
  27. package/components/common/vm/actions/common/select/name/New.vue +10 -70
  28. package/components/common/wizards/datastore/add/New.vue +8 -3
  29. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue +20 -6
  30. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +9 -3
  31. package/components/common/wizards/datastore/add/steps/typeMode/TypeModeNew.vue +8 -3
  32. package/package.json +1 -1
  33. package/components/common/backup/storage/actions/add/steps/common/tooltipInfo/TooltipInfo.vue +0 -94
  34. package/components/common/pages/tasks/table/errorInfo/ErrorInfo.vue +0 -128
  35. package/components/common/wizards/datastore/add/steps/common/tooltipInfo/TooltipInfo.vue +0 -93
@@ -1,93 +0,0 @@
1
- <template>
2
- <div class="tooltip-info">
3
- <ui-icon
4
- :id="`${props.id}-info-trigger`"
5
- name="info"
6
- width="16"
7
- height="16"
8
- :class="['tooltip-info__icon pointer', { active: isShowInfo }]"
9
- @click.stop="isShowInfo = !isShowInfo"
10
- />
11
- <ui-popup-window
12
- v-model="isShowInfo"
13
- top
14
- left
15
- width="272px"
16
- :elem-id="`${props.id}-info-trigger`"
17
- >
18
- <div class="common-widget-info">
19
- <div class="flex justify-between">
20
- <div class="flex">
21
- <ui-icon name="info-2" width="16px" height="16px" />
22
- <span class="title"> {{ localization.common.information }}</span>
23
- </div>
24
- <ui-icon
25
- name="close"
26
- class="pointer hide-icon"
27
- width="16px"
28
- height="16px"
29
- @click.stop="isShowInfo = false"
30
- />
31
- </div>
32
-
33
- <div class="common-widget-info-description">
34
- {{ props.description }}
35
- </div>
36
- </div>
37
- </ui-popup-window>
38
- </div>
39
- </template>
40
-
41
- <script lang="ts" setup>
42
- import type { UI_I_Localization } from '~/lib/models/interfaces'
43
-
44
- const props = defineProps<{
45
- id: string
46
- description: string
47
- }>()
48
-
49
- const localization = computed<UI_I_Localization>(() => useLocal())
50
-
51
- const isShowInfo = ref<boolean>(false)
52
- </script>
53
-
54
- <style lang="scss" scoped>
55
- @import 'assets/scss/common/mixins.scss';
56
- .tooltip-info {
57
- @include flex($align: center);
58
- &__icon {
59
- color: var(--form-icon-color);
60
- &:hover {
61
- color: var(--close-icon);
62
- }
63
- &.active {
64
- color: var(--btn-primary-fill-bg-color);
65
- }
66
- }
67
-
68
- .common-widget-info {
69
- padding: 16px;
70
-
71
- .title {
72
- font-size: 14px;
73
- font-weight: 500;
74
- line-height: 16px;
75
- color: var(--zabbix-text-color);
76
- margin-left: 8px;
77
- }
78
-
79
- .common-widget-info-description {
80
- font-size: 13px;
81
- line-height: 15.73px;
82
- color: var(--zabbix-text-color);
83
- margin-top: 12px;
84
- white-space: pre-line;
85
- }
86
-
87
- svg {
88
- color: var(--alert-icon);
89
- min-width: 16px;
90
- }
91
- }
92
- }
93
- </style>